package com.fzzy.igds.dzhwk.v1.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
/**
|
* @Description 货位信息
|
* @Author CZT
|
* @Date 2025/02/24 09:35
|
*/
|
@Data
|
public class ApiV1Data1005 {
|
|
@PropertyDef(label = "货位代码" )
|
private String hwdm;
|
|
@PropertyDef(label = "货位名称" )
|
private String hwmc;
|
|
@PropertyDef(label = "廒间代码" )
|
private String ajdm;
|
|
@PropertyDef(label = "货位启用日期" )
|
private String hwqyrq;
|
|
@PropertyDef(label = "货位容量" )
|
private Double hwrl;
|
|
@PropertyDef(label = "保管单位" )
|
private String bgdw;
|
|
@PropertyDef(label = "保管员" )
|
private String bgy;
|
|
@PropertyDef(label = "粮食品种代码")
|
private String lspzdm;
|
|
@PropertyDef(label = "粮食性质代码")
|
private String lsxzdm;
|
|
@PropertyDef(label = "粮食等级代码")
|
private String lsdjdm;
|
|
@PropertyDef(label = "收获年度")
|
private String shnd;
|
|
@PropertyDef(label = "国别")
|
private String gb;
|
|
@PropertyDef(label = "产地")
|
private String cd;
|
|
@PropertyDef(label = "货位(油罐)状态")
|
private String hwzt;
|
|
@PropertyDef(label = "入仓时间")
|
private String rcsj;
|
|
@PropertyDef(label = "实际数量(公斤)")
|
private double sjsl;
|
|
@PropertyDef(label = "最后更新时间" )
|
private String zhgxsj;
|
|
}
|