package com.fzzy.push.sx2024.data;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @Description
|
* @Author CZT
|
* @Date 2024/4/24 20:57
|
*/
|
@Data
|
public class SX2024Api1107 implements Serializable {
|
|
@PropertyDef(label = "单位代码")
|
@JsonProperty("KQDM")
|
private String kqdm;
|
|
@PropertyDef(label = "统一单位编码" )
|
@JsonProperty("TYDWBM")
|
private String tydwbm;
|
|
@PropertyDef(label = "单位代码")
|
@JsonProperty("DWDM")
|
private String dwdm;
|
|
@PropertyDef(label = "库区名称")
|
@JsonProperty("KQMC")
|
private String kqmc;
|
|
@PropertyDef(label = "统一库区编码" )
|
@JsonProperty("TYKQBM")
|
private String tykqbm;
|
|
@PropertyDef(label = "统一库区名称" )
|
@JsonProperty("TYKQMC")
|
private String tykqmc;
|
|
@PropertyDef(label = "设备编号")
|
@JsonProperty("SBBH")
|
private String sbbh;
|
|
@PropertyDef(label = "设备仪器名称")
|
@JsonProperty("SBYQMC")
|
private String sbyqmc;
|
|
@PropertyDef(label = "设备仪器代码")
|
@JsonProperty("SBYQDM")
|
private String sbyqdm;
|
|
@PropertyDef(label = "设备规格型号")
|
@JsonProperty("SBGGXH")
|
private String sbggxh;
|
|
@PropertyDef(label = "生产厂家")
|
@JsonProperty("SCCJ")
|
private String sccj;
|
|
@PropertyDef(label = "生产日期")
|
@JSONField(format = "yyyy-MM-dd")
|
@JsonProperty("SCRQ")
|
private Date scrq;
|
|
@PropertyDef(label = "设备描述")
|
@JsonProperty("SBMS")
|
private String sbms;
|
|
@PropertyDef(label = "设备状态")
|
@JsonProperty("SBZT")
|
private String sbzt;
|
|
@PropertyDef(label = "检定时间")
|
@JSONField(format = "yyyy-MM-dd")
|
@JsonProperty("JDSJ")
|
private Date jdsj;
|
|
@PropertyDef(label = "检定单位")
|
@JsonProperty("JDDW")
|
private String jddw;
|
|
@PropertyDef(label = "操作标志")
|
@JsonProperty("CZBZ")
|
private String czbz;
|
|
@PropertyDef(label = "最后更新时间")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@JsonProperty("ZHGXSJ")
|
private Date zhgxsj;
|
}
|