123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- package com.onemap.analyse.domain;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.util.Date;
- @TableName("t_yzt_ztt")
- public class ZttDTO {
- private String bsm;
- private String mbbsm;
- private String zbt;
- private String fbt;
- private String bzdw;
- private String bzsj;
- private String ztsj;
- private String ztdw;
- private Integer ztzt;
- private String zttwj;
- private Date kssj;
- private Date jssj;
- private String cjyh;
- private Date cjsj;
- private String bz;
- private String xzqdm;
- public String getXzqdm() {
- return xzqdm;
- }
- public void setXzqdm(String xzqdm) {
- this.xzqdm = xzqdm;
- }
- public String getBsm() {
- return bsm;
- }
- public void setBsm(String bsm) {
- this.bsm = bsm;
- }
- public String getMbbsm() {
- return mbbsm;
- }
- public void setMbbsm(String mbbsm) {
- this.mbbsm = mbbsm;
- }
- public String getZbt() {
- return zbt;
- }
- public void setZbt(String zbt) {
- this.zbt = zbt;
- }
- public String getFbt() {
- return fbt;
- }
- public void setFbt(String fbt) {
- this.fbt = fbt;
- }
- public String getBzdw() {
- return bzdw;
- }
- public void setBzdw(String bzdw) {
- this.bzdw = bzdw;
- }
- public String getBzsj() {
- return bzsj;
- }
- public void setBzsj(String bzsj) {
- this.bzsj = bzsj;
- }
- public String getZtsj() {
- return ztsj;
- }
- public void setZtsj(String ztsj) {
- this.ztsj = ztsj;
- }
- public String getZtdw() {
- return ztdw;
- }
- public void setZtdw(String ztdw) {
- this.ztdw = ztdw;
- }
- public Integer getZtzt() {
- return ztzt;
- }
- public void setZtzt(Integer ztzt) {
- this.ztzt = ztzt;
- }
- public String getZttwj() {
- return zttwj;
- }
- public void setZttwj(String zttwj) {
- this.zttwj = zttwj;
- }
- public Date getKssj() {
- return kssj;
- }
- public void setKssj(Date kssj) {
- this.kssj = kssj;
- }
- public Date getJssj() {
- return jssj;
- }
- public void setJssj(Date jssj) {
- this.jssj = jssj;
- }
- public String getCjyh() {
- return cjyh;
- }
- public void setCjyh(String cjyh) {
- this.cjyh = cjyh;
- }
- public Date getCjsj() {
- return cjsj;
- }
- public void setCjsj(Date cjsj) {
- this.cjsj = cjsj;
- }
- public String getBz() {
- return bz;
- }
- public void setBz(String bz) {
- this.bz = bz;
- }
- }
|