package com.fzzy.push.sh2023.dto;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 接口表-仓内视频图像数据表
|
*
|
* @author czt
|
* @date 2023-09-02 15:57
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class SH2023Api1307 implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@PropertyDef(label = "库区代码")
|
private String kqdm;
|
|
@PropertyDef(label = "统一库区编码")
|
private String tykqbm;
|
|
@PropertyDef(label = "视频监控设备id")
|
private String spjksbid;
|
|
@PropertyDef(label = "廒间代码")
|
private String ajdm;
|
|
@PropertyDef(label = "统一廒间编码")
|
private String tyajbm;
|
|
@PropertyDef(label = "货位代码")
|
private String hwdm;
|
|
@PropertyDef(label = "统一货位编码" )
|
private String tyhwbm;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "抓拍时间")
|
private Date zpsj;
|
|
@PropertyDef(label = "图像编号")
|
private String txbh;
|
|
@JSONField(name = "yzwbh")
|
@PropertyDef(label = "预置位编号")
|
private String yzwbh;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
private Date zhgxsj;
|
|
@PropertyDef(label = "标记位")
|
private String bjw;
|
}
|