123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- package com.sooka.model.bo;
- import com.google.gson.annotations.Expose;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * 【请填写功能名称】对象 tgjj_dwzhxx
- *
- * @author lei
- * @date 2021-11-15
- */
- public class TgjjDwzhxx extends TgjjBaseBean
- {
- private static final long serialVersionUID = 1L;
- @Expose
- private String DWZH;
- @Expose
- private BigDecimal DWJCBL;
- @Expose
- private BigDecimal GRJCBL;
- @Expose
- private Long DWJCRS;
- @Expose
- private Long DWFCRS;
- @Expose
- private BigDecimal DWZHYE;
- @Expose
- private Date DWXHRQ;
- @Expose
- private String DWXHYY;
- @Expose
- private String DWZHZT;
- @Expose
- private String JZNY;
- @Expose
- private String ZXBH;
- @Expose
- private Date lastUpdateTime;
- public void setDWZH(String DWZH)
- {
- this.DWZH = DWZH;
- }
- public String getDWZH()
- {
- return DWZH;
- }
- public void setDWJCBL(BigDecimal DWJCBL)
- {
- this.DWJCBL = DWJCBL;
- }
- public BigDecimal getDWJCBL()
- {
- return DWJCBL;
- }
- public void setGRJCBL(BigDecimal GRJCBL)
- {
- this.GRJCBL = GRJCBL;
- }
- public BigDecimal getGRJCBL()
- {
- return GRJCBL;
- }
- public void setDWJCRS(Long DWJCRS)
- {
- this.DWJCRS = DWJCRS;
- }
- public Long getDWJCRS()
- {
- return DWJCRS;
- }
- public void setDWFCRS(Long DWFCRS)
- {
- this.DWFCRS = DWFCRS;
- }
- public Long getDWFCRS()
- {
- return DWFCRS;
- }
- public void setDWZHYE(BigDecimal DWZHYE)
- {
- this.DWZHYE = DWZHYE;
- }
- public BigDecimal getDWZHYE()
- {
- return DWZHYE;
- }
- public void setDWXHRQ(Date DWXHRQ)
- {
- this.DWXHRQ = DWXHRQ;
- }
- public Date getDWXHRQ()
- {
- return DWXHRQ;
- }
- public void setDWXHYY(String DWXHYY)
- {
- this.DWXHYY = DWXHYY;
- }
- public String getDWXHYY()
- {
- return DWXHYY;
- }
- public void setDWZHZT(String DWZHZT)
- {
- this.DWZHZT = DWZHZT;
- }
- public String getDWZHZT()
- {
- return DWZHZT;
- }
- public void setJZNY(String JZNY)
- {
- this.JZNY = JZNY;
- }
- public String getJZNY()
- {
- return JZNY;
- }
- public void setZXBH(String ZXBH)
- {
- this.ZXBH = ZXBH;
- }
- public String getZXBH()
- {
- return ZXBH;
- }
- public void setLastUpdateTime(Date lastUpdateTime)
- {
- this.lastUpdateTime = lastUpdateTime;
- }
- public Date getLastUpdateTime()
- {
- return lastUpdateTime;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("DWZH", getDWZH())
- .append("DWJCBL", getDWJCBL())
- .append("GRJCBL", getGRJCBL())
- .append("DWJCRS", getDWJCRS())
- .append("DWFCRS", getDWFCRS())
- .append("DWZHYE", getDWZHYE())
- .append("DWXHRQ", getDWXHRQ())
- .append("DWXHYY", getDWXHYY())
- .append("DWZHZT", getDWZHZT())
- .append("JZNY", getJZNY())
- .append("ZXBH", getZXBH())
- .append("lastUpdateTime", getLastUpdateTime())
- .append("CLLX", getCLLX())
- .toString();
- }
- }
|