package com.ld.igds.pest.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 虫害检测进度 信息封装
|
*
|
* @author jiazx
|
*/
|
@Data
|
public class PestProgressData implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@PropertyDef(label = "控制柜ID")
|
private String serId;
|
|
@PropertyDef(label = "组织编码")
|
private String companyId;
|
|
@PropertyDef(label = "仓库ID")
|
private String depotId;
|
|
@PropertyDef(label = "当前采集点")
|
private int checkPoint;
|
|
@PropertyDef(label = "采集点总数")
|
private int sumCheckNum;
|
|
@PropertyDef(label = "说明")
|
private String msg = "无检测进度说明";
|
|
|
}
|