abf890d7001df0d89fb2de60b103affeb708e400.svn-base 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspBidRgstr;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.util.Date;
  6. public class BisInspBidRgstrDto extends BisInspBidRgstr {
  7. // 基础表id
  8. private String code;
  9. // 基础表id
  10. private String baseId;
  11. //组id
  12. private String nodeId;
  13. // 对象名称
  14. private String nm;
  15. // ptype
  16. private String pType;
  17. // 对象ut_Type
  18. private String type;
  19. //督查组名称groupName
  20. private String groupName;
  21. private String plnaId;
  22. private String state;
  23. @ApiParam(name = "时间条件-开始时间")
  24. @ApiModelProperty(value = "时间条件-开始时间", name = "sttm")
  25. private String sttm;
  26. @ApiParam(name = "时间条件-结束时间")
  27. @ApiModelProperty(value = "时间条件-结束时间", name = "entm")
  28. private String entm;
  29. public String getPlnaId() {
  30. return plnaId;
  31. }
  32. public void setPlnaId(String plnaId) {
  33. this.plnaId = plnaId;
  34. }
  35. public String getSttm() {
  36. return sttm;
  37. }
  38. public void setSttm(String sttm) {
  39. this.sttm = sttm;
  40. }
  41. public String getEntm() {
  42. return entm;
  43. }
  44. public void setEntm(String entm) {
  45. this.entm = entm;
  46. }
  47. @Override
  48. public String getState() {
  49. return state;
  50. }
  51. @Override
  52. public void setState(String state) {
  53. this.state = state;
  54. }
  55. public String getGroupName() {
  56. return groupName;
  57. }
  58. public void setGroupName(String groupName) {
  59. this.groupName = groupName;
  60. }
  61. public String getCode() {
  62. return code;
  63. }
  64. public void setCode(String code) {
  65. this.code = code;
  66. }
  67. public String getNodeId() {
  68. return nodeId;
  69. }
  70. public void setNodeId(String nodeId) {
  71. this.nodeId = nodeId;
  72. }
  73. public String getNm() {
  74. return nm;
  75. }
  76. public void setNm(String nm) {
  77. this.nm = nm;
  78. }
  79. public String getpType() {
  80. return pType;
  81. }
  82. public void setpType(String pType) {
  83. this.pType = pType;
  84. }
  85. public String getBaseId() {
  86. return baseId;
  87. }
  88. public void setBaseId(String baseId) {
  89. this.baseId = baseId;
  90. }
  91. public String getType() {
  92. return type;
  93. }
  94. public void setType(String type) {
  95. this.type = type;
  96. }
  97. }