fe34803741d3fb386938be02ace7929d286efe46.svn-base 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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. import java.util.Date;
  6. /**
  7. * TacPawpBstocmTsopbfpSctnParam
  8. *
  9. * @author lune
  10. * @date 2019-6-19
  11. */
  12. public class TacPawpBstocmTsopbfpSctnParam extends PageParam implements Serializable {
  13. @ApiModelProperty("主键ID")
  14. private String id;
  15. @ApiModelProperty("招标投标制ID")
  16. private String tsopbfpId;
  17. @ApiModelProperty("标段性质(1:勘测招标;2:监理标;3:施工标;4:其他)")
  18. private String sctnType;
  19. @ApiModelProperty("标段名称")
  20. private String sctnName;
  21. @ApiModelProperty("招标方式")
  22. private String biddingType;
  23. @ApiModelProperty("代理机构")
  24. private String agncy;
  25. @ApiModelProperty("中标单位")
  26. private String bidUnit;
  27. @ApiModelProperty("资质等级")
  28. private String cdtlLevl;
  29. @ApiModelProperty("中标价(万元)")
  30. private Double bidCost;
  31. @ApiModelProperty("是否全过程监督(1:是;2:否)")
  32. private String isWps;
  33. @ApiModelProperty("是否招标前备案(1:是;2:否)")
  34. private String isRbb;
  35. @ApiModelProperty("是否提交招投标总结报告(1:是;2:否)")
  36. private String isStabsr;
  37. @ApiModelProperty("备注")
  38. private String note;
  39. @ApiModelProperty("记录人员ID")
  40. private String persId;
  41. @ApiModelProperty("创建时间")
  42. private Date intm;
  43. @ApiModelProperty("修改时间")
  44. private Date uptm;
  45. @ApiModelProperty("数据状态(0:正常;9:删除)")
  46. private String dataStat;
  47. public TacPawpBstocmTsopbfpSctnParam() {
  48. }
  49. public String getSctnType() {
  50. return sctnType;
  51. }
  52. public void setSctnType(String sctnType) {
  53. this.sctnType = sctnType;
  54. }
  55. public String getId() {
  56. return id;
  57. }
  58. public void setId(String id) {
  59. this.id = id;
  60. }
  61. public String getTsopbfpId() {
  62. return tsopbfpId;
  63. }
  64. public void setTsopbfpId(String tsopbfpId) {
  65. this.tsopbfpId = tsopbfpId;
  66. }
  67. public String getSctnName() {
  68. return sctnName;
  69. }
  70. public void setSctnName(String sctnName) {
  71. this.sctnName = sctnName;
  72. }
  73. public String getBiddingType() {
  74. return biddingType;
  75. }
  76. public void setBiddingType(String biddingType) {
  77. this.biddingType = biddingType;
  78. }
  79. public String getAgncy() {
  80. return agncy;
  81. }
  82. public void setAgncy(String agncy) {
  83. this.agncy = agncy;
  84. }
  85. public String getBidUnit() {
  86. return bidUnit;
  87. }
  88. public void setBidUnit(String bidUnit) {
  89. this.bidUnit = bidUnit;
  90. }
  91. public String getCdtlLevl() {
  92. return cdtlLevl;
  93. }
  94. public void setCdtlLevl(String cdtlLevl) {
  95. this.cdtlLevl = cdtlLevl;
  96. }
  97. public Double getBidCost() {
  98. return bidCost;
  99. }
  100. public void setBidCost(Double bidCost) {
  101. this.bidCost = bidCost;
  102. }
  103. public String getIsWps() {
  104. return isWps;
  105. }
  106. public void setIsWps(String isWps) {
  107. this.isWps = isWps;
  108. }
  109. public String getIsRbb() {
  110. return isRbb;
  111. }
  112. public void setIsRbb(String isRbb) {
  113. this.isRbb = isRbb;
  114. }
  115. public String getIsStabsr() {
  116. return isStabsr;
  117. }
  118. public void setIsStabsr(String isStabsr) {
  119. this.isStabsr = isStabsr;
  120. }
  121. public String getNote() {
  122. return note;
  123. }
  124. public void setNote(String note) {
  125. this.note = note;
  126. }
  127. public String getPersId() {
  128. return persId;
  129. }
  130. public void setPersId(String persId) {
  131. this.persId = persId;
  132. }
  133. public Date getIntm() {
  134. return intm;
  135. }
  136. public void setIntm(Date intm) {
  137. this.intm = intm;
  138. }
  139. public Date getUptm() {
  140. return uptm;
  141. }
  142. public void setUptm(Date uptm) {
  143. this.uptm = uptm;
  144. }
  145. public String getDataStat() {
  146. return dataStat;
  147. }
  148. public void setDataStat(String dataStat) {
  149. this.dataStat = dataStat;
  150. }
  151. }