| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspFjaccpAm
- *
- * @author lhc
- * @date 2023-11-8
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspFjaccpAm extends BaseBean implements Serializable {
- private Double f731;
- // 备注
- @ApiModelProperty(value="备注",name="note")
- private String note;
- // 记录人员ID
- @ApiModelProperty(value="记录人员ID",name="persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value="创建时间",name="intm")
- private Date intm;
- // 最后修改时间
- @ApiModelProperty(value="最后修改时间",name="uptm")
- private Date uptm;
- // 数据状态
- @ApiModelProperty(value="数据状态",name="dataStat")
- private String dataStat;
- // 督查状态
- @ApiModelProperty(value="督查状态",name="state")
- private String state;
- private String id;
- // 登记表ID
- @ApiModelProperty(value="登记表ID",name="rgstrId")
- private String rgstrId;
- private Double f711;
- private Double f712;
- private Double f721;
- private Double f722;
- private Double f723;
- private Double f724;
- private Double f725;
- public BisInspFjaccpAm() {
- }
- public Double getF731() {
- return f731;
- }
- public void setF731(Double f731) {
- this.f731 = f731;
- }
- 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;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public Double getF711() {
- return f711;
- }
- public void setF711(Double f711) {
- this.f711 = f711;
- }
- public Double getF712() {
- return f712;
- }
- public void setF712(Double f712) {
- this.f712 = f712;
- }
- public Double getF721() {
- return f721;
- }
- public void setF721(Double f721) {
- this.f721 = f721;
- }
- public Double getF722() {
- return f722;
- }
- public void setF722(Double f722) {
- this.f722 = f722;
- }
- public Double getF723() {
- return f723;
- }
- public void setF723(Double f723) {
- this.f723 = f723;
- }
- public Double getF724() {
- return f724;
- }
- public void setF724(Double f724) {
- this.f724 = f724;
- }
- public Double getF725() {
- return f725;
- }
- public void setF725(Double f725) {
- this.f725 = f725;
- }
- @Override
- public String toString() {
- return "BisInspFjaccpAm [" + "f731=" + f731 + ", note=" + note + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", state=" + state + ", id=" + id + ", rgstrId=" + rgstrId + ", f711=" + f711 + ", f712=" + f712 + ", f721=" + f721 + ", f722=" + f722 + ", f723=" + f723 + ", f724=" + f724 + ", f725=" + f725 + "]";
- }
- }
|