| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:TacPawpBstocmTsopbfpSctn
- *
- * @author lune
- * @date 2019-6-19
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class TacPawpBstocmTsopbfpSctn extends BaseBean implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("招标投标制ID")
- private String tsopbfpId;
- @ApiModelProperty("标段性质(1:勘测招标;2:监理标;3:施工标;4:其他)")
- private String sctnType;
- @ApiModelProperty("标段名称")
- private String sctnName;
- @ApiModelProperty("招标方式")
- private String biddingType;
- @ApiModelProperty("代理机构")
- private String agncy;
- @ApiModelProperty("中标单位")
- private String bidUnit;
- @ApiModelProperty("资质等级")
- private String cdtlLevl;
- @ApiModelProperty("中标价(万元)")
- private Double bidCost;
- @ApiModelProperty("是否全过程监督(1:是;2:否)")
- private String isWps;
- @ApiModelProperty("是否招标前备案(1:是;2:否)")
- private String isRbb;
- @ApiModelProperty("是否提交招投标总结报告(1:是;2:否)")
- private String isStabsr;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("记录人员ID")
- private String persId;
- @ApiModelProperty("创建时间")
- private Date intm;
- @ApiModelProperty("修改时间")
- private Date uptm;
- @ApiModelProperty("数据状态(0:正常;9:删除)")
- private String dataStat;
- public TacPawpBstocmTsopbfpSctn() {
- }
- public String getSctnType() {
- return sctnType;
- }
- public void setSctnType(String sctnType) {
- this.sctnType = sctnType;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getTsopbfpId() {
- return tsopbfpId;
- }
- public void setTsopbfpId(String tsopbfpId) {
- this.tsopbfpId = tsopbfpId;
- }
- public String getSctnName() {
- return sctnName;
- }
- public void setSctnName(String sctnName) {
- this.sctnName = sctnName;
- }
- public String getBiddingType() {
- return biddingType;
- }
- public void setBiddingType(String biddingType) {
- this.biddingType = biddingType;
- }
- public String getAgncy() {
- return agncy;
- }
- public void setAgncy(String agncy) {
- this.agncy = agncy;
- }
- public String getBidUnit() {
- return bidUnit;
- }
- public void setBidUnit(String bidUnit) {
- this.bidUnit = bidUnit;
- }
- public String getCdtlLevl() {
- return cdtlLevl;
- }
- public void setCdtlLevl(String cdtlLevl) {
- this.cdtlLevl = cdtlLevl;
- }
- public Double getBidCost() {
- return bidCost;
- }
- public void setBidCost(Double bidCost) {
- this.bidCost = bidCost;
- }
- public String getIsWps() {
- return isWps;
- }
- public void setIsWps(String isWps) {
- this.isWps = isWps;
- }
- public String getIsRbb() {
- return isRbb;
- }
- public void setIsRbb(String isRbb) {
- this.isRbb = isRbb;
- }
- public String getIsStabsr() {
- return isStabsr;
- }
- public void setIsStabsr(String isStabsr) {
- this.isStabsr = isStabsr;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- return "TacPawpBstocmTsopbfpSctn [" + "id=" + id + ", tsopbfpId=" + tsopbfpId + ", sctnName=" + sctnName + ", biddingType=" + biddingType + ", agncy=" + agncy + ", bidUnit=" + bidUnit + ", cdtlLevl=" + cdtlLevl + ", bidCost=" + bidCost + ", isWps=" + isWps + ", isRbb=" + isRbb + ", isStabsr=" + isStabsr + ", note=" + note + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
- }
- }
|