123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package com.onemap.analyse.domain;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.util.Date;
- /**
- * 分析任务日志
- */
- @TableName("t_fzss_fxrwrz")
- public class FxrwrzDTO {
- private String bsm;
- private String rwlx;
- private String rwbsm;
- private String rzlx;
- private Date rzsj;
- private String fxjg;
- private String rzlr;
- public String getBsm() {
- return bsm;
- }
- public void setBsm(String bsm) {
- this.bsm = bsm;
- }
- public String getRwlx() {
- return rwlx;
- }
- public void setRwlx(String rwlx) {
- this.rwlx = rwlx;
- }
- public String getRwbsm() {
- return rwbsm;
- }
- public void setRwbsm(String rwbsm) {
- this.rwbsm = rwbsm;
- }
- public String getRzlx() {
- return rzlx;
- }
- public void setRzlx(String rzlx) {
- this.rzlx = rzlx;
- }
- public Date getRzsj() {
- return rzsj;
- }
- public void setRzsj(Date rzsj) {
- this.rzsj = rzsj;
- }
- public String getFxjg() {
- return fxjg;
- }
- public void setFxjg(String fxjg) {
- this.fxjg = fxjg;
- }
- public String getRzlr() {
- return rzlr;
- }
- public void setRzlr(String rzlr) {
- this.rzlr = rzlr;
- }
- }
|