package com.fzzy.igds.dzhwk.v1.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
/**
|
* 接口表-进出仓记录
|
*/
|
@Data
|
public class ApiV1Data2004 {
|
|
@PropertyDef(label = "单号" )
|
private String jccdh;
|
|
@PropertyDef(label = "廒间代码" )
|
private String ajdm;
|
|
@PropertyDef(label = "进出仓人员" )
|
private String jcry;
|
|
@PropertyDef(label = "进仓时间" )
|
private String jcsj;
|
|
@PropertyDef(label = "出仓时间" )
|
private String ccsj;
|
|
@PropertyDef(label = "入仓目的" )
|
private String jcmd;
|
|
@PropertyDef(label = "入仓说明" )
|
private String jcsm;
|
|
@PropertyDef(label = "更新时间" )
|
private String zhgxsj;
|
|
}
|