package com.fzzy.push.shjdjw2023.dto;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import javax.persistence.Id;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 粮食入库检验信息数据封装
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class ShjdjwApi1203 implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@PropertyDef(label = "入库检验单号")
|
private String qydbh;
|
|
@PropertyDef(label = "货位代码")
|
private String hwbm;
|
|
@PropertyDef(label = "入库业务单号")
|
private String ypbm;
|
|
@PropertyDef(label = "扦样时间")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
private Date qysj;
|
|
@PropertyDef(label = "扦样人姓名")
|
private String qyrxm;
|
|
@PropertyDef(label = "检验项目")
|
private String jyxm;
|
|
@PropertyDef(label = "检验结果")
|
private String jyjg;
|
|
@PropertyDef(label = "增扣价")
|
private String zkj;
|
|
@PropertyDef(label = "增扣量")
|
private String zkl;
|
|
@PropertyDef(label = "检验人姓名")
|
private String jyrxm;
|
|
@PropertyDef(label = "检验时间")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
private String jysj;
|
|
@PropertyDef(label = "检验结论")
|
private String jyjl;
|
|
@PropertyDef(label = "粮食品种代码")
|
private String pzbm;
|
|
@PropertyDef(label = "粮食定等")
|
private String lsdd;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@PropertyDef(label = "扦样类别")
|
private String qylb;
|
|
@PropertyDef(label = "扣量比例")
|
private Double klbl;
|
|
@PropertyDef(label = "标记位")
|
private String bjw;
|
|
@PropertyDef(label = "批次号")
|
private String pch;
|
|
|
}
|