package com.ld.igds.quantity.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 虫害检测进度 信息封装
|
*
|
* @author vince
|
*/
|
@Data
|
public class QuantityProgressData 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 = "库区ID")
|
private String deptId;
|
|
@PropertyDef(label = "当前状态")
|
private String state;
|
|
@PropertyDef(label = "进度百分比")
|
private int progress;
|
|
@PropertyDef(label = "说明")
|
private String msg = "";
|
|
|
}
|