b1d2dc377de63ca81e084617980eca7d3517ba0d.svn-base 1.5 KB

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