81e98c7ecd16edebb079291e5a18576f9252b4b7.svn-base 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import cn.com.goldenwater.core.model.BaseBean;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. /**
  7. * entity:BisInspAllRlationPersOrga
  8. *
  9. * @author lhc
  10. * @date 2020-7-20
  11. */
  12. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  13. public class BisInspAllRlationPersOrga extends BaseBean implements Serializable {
  14. // 人员ID
  15. @ApiModelProperty(value="人员ID",name="userCode")
  16. private String userCode;
  17. // 组织机构代码
  18. @ApiModelProperty(value="组织机构代码",name="organizationId")
  19. private String deptId;
  20. private String jobs;
  21. private String position;
  22. private Integer orderId;
  23. public Integer getOrderId() {
  24. return orderId;
  25. }
  26. public void setOrderId(Integer orderId) {
  27. this.orderId = orderId;
  28. }
  29. public BisInspAllRlationPersOrga() {
  30. }
  31. public String getUserCode() {
  32. return userCode;
  33. }
  34. public void setUserCode(String userCode) {
  35. this.userCode = userCode;
  36. }
  37. public String getDeptId() {
  38. return deptId;
  39. }
  40. public void setDeptId(String deptId) {
  41. this.deptId = deptId;
  42. }
  43. public String getJobs() {
  44. return jobs;
  45. }
  46. public void setJobs(String jobs) {
  47. this.jobs = jobs;
  48. }
  49. public String getPosition() {
  50. return position;
  51. }
  52. public void setPosition(String position) {
  53. this.position = position;
  54. }
  55. @Override
  56. public String toString() {
  57. return "BisInspAllRlationPersOrga [" + "userCode=" + userCode + ", deptId=" + deptId + ", jobs=" + jobs + ", position=" + position + "]";
  58. }
  59. }