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 java.util.Date;
|
|
/**
|
* 粮食库存数据封装
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class ShjdjwApi1208 {
|
|
@PropertyDef(label = "单位名称")
|
private String dwmc;
|
|
@PropertyDef(label = "仓房名称")
|
private String cfmc;
|
|
@PropertyDef(label = "廒间名称")
|
private String ajmc;
|
|
@PropertyDef(label = "粮食品种代码")
|
private String lspzbm;
|
|
@PropertyDef(label = "粮食性质代码")
|
private String lsxzbm;
|
|
@PropertyDef(label = "粮食等级代码")
|
private String djbm;
|
|
@PropertyDef(label = "收获年度")
|
private String shnd;
|
|
@PropertyDef(label = "国别")
|
private String gb;
|
|
@PropertyDef(label = "产地")
|
private String cd;
|
|
@PropertyDef(label = "粮权归属单位代码")
|
private String lqgsdwbm;
|
|
@PropertyDef(label = "管理方式")
|
private String glfs;
|
|
@PropertyDef(label = "库存监测时间")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
private Date kcjcsj;
|
|
@PropertyDef(label = "期末库存")
|
private Double qmkc;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@PropertyDef(label = "实际数量")
|
private Double sjsl;
|
|
@PropertyDef(label = "年初库存")
|
private Double ncye;
|
|
@PropertyDef(label = "期初库存")
|
private Double qckc;
|
|
@PropertyDef(label = "本期收入")
|
private Double bqsr;
|
|
@PropertyDef(label = "本期支出")
|
private Double bqzc;
|
|
@PropertyDef(label = "质量情况")
|
private String zlqk;
|
|
@PropertyDef(label = "质检报告单内码")
|
private String zjbgdnm;
|
|
@PropertyDef(label = "批次号")
|
private String pch;
|
|
}
|