03d0a73b16a558b1f065e832bd6c7cfdb59d2ff5.svn-base 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. * BisInspKeyRegSecUnitParam
  9. *
  10. * @author lhc
  11. * @date 2019-4-20
  12. */
  13. public class BisInspKeyRegSecUnitParam extends PageParam implements Serializable {
  14. // 主键ID
  15. @ApiParam(name = "主键ID")
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 标段ID
  19. @ApiParam(name = "标段ID")
  20. @ApiModelProperty(value = "标段ID", name = "secId")
  21. private String secId;
  22. // 单位名称
  23. @ApiParam(name = "单位名称")
  24. @ApiModelProperty(value = "单位名称", name = "nm")
  25. private String nm;
  26. // 单位性质
  27. @ApiParam(name = "单位性质")
  28. @ApiModelProperty(value = "单位性质", name = "nature")
  29. private String nature;
  30. // 监管模式
  31. @ApiParam(name = "监管模式")
  32. @ApiModelProperty(value = "监管模式", name = "government")
  33. private String government;
  34. // 记录人员ID
  35. @ApiParam(name = "记录人员ID")
  36. @ApiModelProperty(value = "记录人员ID", name = "persId")
  37. private String persId;
  38. // 创建时间
  39. @ApiParam(name = "创建时间")
  40. @ApiModelProperty(value = "创建时间", name = "intm")
  41. private Date intm;
  42. // 最后修改时间
  43. @ApiParam(name = "最后修改时间")
  44. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  45. private Date uptm;
  46. @ApiModelProperty("任务对象id")
  47. private String objId;
  48. public String getObjId() {
  49. return objId;
  50. }
  51. public void setObjId(String objId) {
  52. this.objId = objId;
  53. }
  54. public BisInspKeyRegSecUnitParam() {
  55. }
  56. public String getId() {
  57. return id;
  58. }
  59. public void setId(String id) {
  60. this.id = id;
  61. }
  62. public String getSecId() {
  63. return secId;
  64. }
  65. public void setSecId(String secId) {
  66. this.secId = secId;
  67. }
  68. public String getNm() {
  69. return nm;
  70. }
  71. public void setNm(String nm) {
  72. this.nm = nm;
  73. }
  74. public String getNature() {
  75. return nature;
  76. }
  77. public void setNature(String nature) {
  78. this.nature = nature;
  79. }
  80. public String getGovernment() {
  81. return government;
  82. }
  83. public void setGovernment(String government) {
  84. this.government = government;
  85. }
  86. public String getPersId() {
  87. return persId;
  88. }
  89. public void setPersId(String persId) {
  90. this.persId = persId;
  91. }
  92. public Date getIntm() {
  93. return intm;
  94. }
  95. public void setIntm(Date intm) {
  96. this.intm = intm;
  97. }
  98. public Date getUptm() {
  99. return uptm;
  100. }
  101. public void setUptm(Date uptm) {
  102. this.uptm = uptm;
  103. }
  104. }