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.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @Description 合同信息
|
* @Author CZT
|
* @Date 2024/4/24 21:15
|
*/
|
@Data
|
public class SX2024Api1201 implements Serializable {
|
|
@PropertyDef(label = "单位代码")
|
@JsonProperty("DWDM")
|
private String dwdm;
|
|
@PropertyDef(label = "统一单位编码")
|
@JsonProperty("TYDWBM")
|
private String tydwbm;
|
|
@PropertyDef(label = "合同号")
|
@JsonProperty("HTH")
|
private String hth;
|
|
@PropertyDef(label = "合同名称")
|
@JsonProperty("HTMC")
|
private String htmc;
|
|
@PropertyDef(label = "合同种类")
|
@JsonProperty("HTZL")
|
private String htzl;
|
|
@PropertyDef(label = "客户类型")
|
@JsonProperty("KHLX")
|
private String khlx;
|
|
@PropertyDef(label = "客户统一社会信用代码")
|
@JsonProperty("KHTYSHXYDM")
|
private String khtyshxydm;
|
|
@PropertyDef(label = "客户名称")
|
@JsonProperty("KHMC")
|
private String khmc;
|
|
@PropertyDef(label = "法定代表人")
|
@JsonProperty("FDDBR")
|
private String fddbr;
|
|
@PropertyDef(label = "通讯地址")
|
@JsonProperty("TXDZ")
|
private String txdz;
|
|
@PropertyDef(label = "邮政编码")
|
@JsonProperty("YZBM")
|
private String yzbm;
|
|
@PropertyDef(label = "联系人姓名")
|
@JsonProperty("LXRXM")
|
private String lxrxm;
|
|
@PropertyDef(label = "联系电话")
|
@JsonProperty("LXRDH")
|
private String lxrdh;
|
|
@PropertyDef(label = "身份证号")
|
@JsonProperty("SFZH")
|
private String sfzh;
|
|
@PropertyDef(label = "电子信箱")
|
@JsonProperty("DZYX")
|
private String dzyx;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "签订日期")
|
@JsonProperty("QDRQ")
|
private Date qdrq;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "约定完成时间")
|
@JsonProperty("YDWCSJ")
|
private Date ydwcsj;
|
|
@PropertyDef(label = "验收方式")
|
@JsonProperty("YSFS")
|
private String ysfs;
|
|
@PropertyDef(label = "签订地点")
|
@JsonProperty("QDDD")
|
private String qddd;
|
|
@PropertyDef(label = "粮食品种代码")
|
@JsonProperty("LSPZDM")
|
private String lspzdm;
|
|
@PropertyDef(label = "粮食性质代码")
|
@JsonProperty("LSXZDM")
|
private String lsxzdm;
|
|
@PropertyDef(label = "合同单价")
|
@JsonProperty("HTDJ")
|
private Double htdj;
|
|
@PropertyDef(label = "约定购销粮食数量")
|
@JsonProperty("YDGXLSSL")
|
private Double ydgxlssl;
|
|
@PropertyDef(label = "合同总金额")
|
@JsonProperty("HTZJE")
|
private BigDecimal htzje;
|
|
@PropertyDef(label = "履约保证金")
|
@JsonProperty("LYBZJ")
|
private Double lybzj;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "实际完成时间")
|
@JsonProperty("SSWCSJ")
|
private Date sswcsj;
|
|
@PropertyDef(label = "结算价格")
|
@JsonProperty("JSJG")
|
private Double jsjg;
|
|
@PropertyDef(label = "付款方式")
|
@JsonProperty("FKFS")
|
private String FKFS;
|
|
@PropertyDef(label = "结算总金额")
|
@JsonProperty("JSZJE")
|
private BigDecimal jszje;
|
|
@PropertyDef(label = "客户方开户行")
|
@JsonProperty("KHFKHH")
|
private String khfkhh;
|
|
@PropertyDef(label = "客户方账号")
|
@JsonProperty("KHFZH")
|
private String khfzh;
|
|
@PropertyDef(label = "客户签约人")
|
@JsonProperty("KHQYR")
|
private String khqyr;
|
|
@PropertyDef(label = "本方开户行")
|
@JsonProperty("BFKHH")
|
private String bfkhh;
|
|
@PropertyDef(label = "本方账号")
|
@JsonProperty("BFZH")
|
private String bfzh;
|
|
@PropertyDef(label = "本方签约人")
|
@JsonProperty("BFQYR")
|
private String bfqyr;
|
|
@PropertyDef(label = "审批人")
|
@JsonProperty("SHR")
|
private String shr;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "审批时间")
|
@JsonProperty("SHSJ")
|
private Date shsj;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "完成日期")
|
@JsonProperty("WCRQ")
|
private Date wcrq;
|
|
@PropertyDef(label = "操作标志")
|
@JsonProperty("CZBZ")
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "更新时间")
|
@JsonProperty("ZHGXSJ")
|
private Date zhgxsj;
|
|
}
|