123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- package com.onemap.analyse.domain;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.util.Date;
- /**
- * 合规性分析
- */
- @TableName("t_fzss_hgxfx")
- public class HgxfxDTO {
- private String bsm;
- private Double fxmj;
- private String xmmc;
- private String xmlx;
- private String jsdw;
- private String ydxz_bsm;
- private String fxbg;
- private Integer rwzt;
- private Date rwkssj;
- private Date rwjssj;
- private String cjyh;
- private String rwly;
- private Date cjsj;
- public String getBsm() {
- return bsm;
- }
- public void setBsm(String bsm) {
- this.bsm = bsm;
- }
- public Double getFxmj() {
- return fxmj;
- }
- public void setFxmj(Double fxmj) {
- this.fxmj = fxmj;
- }
- public String getXmmc() {
- return xmmc;
- }
- public void setXmmc(String xmmc) {
- this.xmmc = xmmc;
- }
- public String getXmlx() {
- return xmlx;
- }
- public void setXmlx(String xmlx) {
- this.xmlx = xmlx;
- }
- public String getJsdw() {
- return jsdw;
- }
- public void setJsdw(String jsdw) {
- this.jsdw = jsdw;
- }
- public String getYdxz_bsm() {
- return ydxz_bsm;
- }
- public void setYdxz_bsm(String ydxz_bsm) {
- this.ydxz_bsm = ydxz_bsm;
- }
- public String getFxbg() {
- return fxbg;
- }
- public void setFxbg(String fxbg) {
- this.fxbg = fxbg;
- }
- public Integer getRwzt() {
- return rwzt;
- }
- public void setRwzt(Integer rwzt) {
- this.rwzt = rwzt;
- }
- public Date getRwkssj() {
- return rwkssj;
- }
- public void setRwkssj(Date rwkssj) {
- this.rwkssj = rwkssj;
- }
- public Date getRwjssj() {
- return rwjssj;
- }
- public void setRwjssj(Date rwjssj) {
- this.rwjssj = rwjssj;
- }
- 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 getRwly() {
- return rwly;
- }
- public void setRwly(String rwly) {
- this.rwly = rwly;
- }
- }
|