edcd56c62fb345efe019dda20283f2af022d717b.svn-base 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. * BisInspBidProParam
  9. *
  10. * @author lhc
  11. * @date 2020-12-25
  12. */
  13. public class BisInspBidProParam 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 = "rgstrId")
  21. private String rgstrId;
  22. // 是否存在招投标问题
  23. @ApiParam(name = "是否存在招投标问题")
  24. @ApiModelProperty(value = "是否存在招投标问题", name = "isBidPro")
  25. private String isBidPro;
  26. // 填报状态
  27. @ApiParam(name = "填报状态")
  28. @ApiModelProperty(value = "填报状态", name = "state")
  29. private String state;
  30. // 记录人员ID
  31. @ApiParam(name = "记录人员ID")
  32. @ApiModelProperty(value = "记录人员ID", name = "persId")
  33. private String persId;
  34. // 创建时间
  35. @ApiParam(name = "创建时间")
  36. @ApiModelProperty(value = "创建时间", name = "intm")
  37. private Date intm;
  38. // 修改时间
  39. @ApiParam(name = "修改时间")
  40. @ApiModelProperty(value = "修改时间", name = "uptm")
  41. private Date uptm;
  42. // 数据状态
  43. @ApiParam(name = "数据状态")
  44. @ApiModelProperty(value = "数据状态", name = "dataStat")
  45. private String dataStat;
  46. public BisInspBidProParam() {
  47. }
  48. public String getId() {
  49. return id;
  50. }
  51. public void setId(String id) {
  52. this.id = id;
  53. }
  54. public String getRgstrId() {
  55. return rgstrId;
  56. }
  57. public void setRgstrId(String rgstrId) {
  58. this.rgstrId = rgstrId;
  59. }
  60. public String getIsBidPro() {
  61. return isBidPro;
  62. }
  63. public void setIsBidPro(String isBidPro) {
  64. this.isBidPro = isBidPro;
  65. }
  66. public String getState() {
  67. return state;
  68. }
  69. public void setState(String state) {
  70. this.state = state;
  71. }
  72. public String getPersId() {
  73. return persId;
  74. }
  75. public void setPersId(String persId) {
  76. this.persId = persId;
  77. }
  78. public Date getIntm() {
  79. return intm;
  80. }
  81. public void setIntm(Date intm) {
  82. this.intm = intm;
  83. }
  84. public Date getUptm() {
  85. return uptm;
  86. }
  87. public void setUptm(Date uptm) {
  88. this.uptm = uptm;
  89. }
  90. public String getDataStat() {
  91. return dataStat;
  92. }
  93. public void setDataStat(String dataStat) {
  94. this.dataStat = dataStat;
  95. }
  96. }