2f79b5a319173471e34306461cbe5bf924dfc55c.svn-base 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. /**
  6. * BisInspAllRlationParam
  7. *
  8. * @author lune
  9. * @date 2019-2-23
  10. */
  11. public class BisInspAllRlationParam extends PageParam implements Serializable {
  12. @ApiModelProperty(value = "用户ID", name = "persid")
  13. private String persid;
  14. @ApiModelProperty(value = "督查组ID", name = "id")
  15. private String id;
  16. @ApiModelProperty(value = "用户类型(1:组长;2:组员;3:联络员;4:专家;11:前期专家;12:监管专家;13:计划专家;14:财务专家;15:质量专家;16:安全专家;19:助理;20:特派员)", name = "pertype")
  17. private String pertype;
  18. @ApiModelProperty("行政编码")
  19. private String adCode;
  20. @ApiModelProperty("")
  21. private String pType;
  22. @ApiModelProperty("")
  23. private String sttm;
  24. private String entm;
  25. public String getSttm() {
  26. return sttm;
  27. }
  28. public void setSttm(String sttm) {
  29. this.sttm = sttm;
  30. }
  31. public String getEntm() {
  32. return entm;
  33. }
  34. public void setEntm(String entm) {
  35. this.entm = entm;
  36. }
  37. public String getpType() {
  38. return pType;
  39. }
  40. public void setpType(String pType) {
  41. this.pType = pType;
  42. }
  43. public String getAdCode() {
  44. return adCode;
  45. }
  46. public void setAdCode(String adCode) {
  47. this.adCode = adCode;
  48. }
  49. public BisInspAllRlationParam() {
  50. }
  51. public String getPersid() {
  52. return persid;
  53. }
  54. public void setPersid(String persid) {
  55. this.persid = persid;
  56. }
  57. public String getId() {
  58. return id;
  59. }
  60. public void setId(String id) {
  61. this.id = id;
  62. }
  63. public String getPertype() {
  64. return pertype;
  65. }
  66. public void setPertype(String pertype) {
  67. this.pertype = pertype;
  68. }
  69. }