CZT
2023-08-16 2e121f643a6776e6063796c104c95647faa000a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.ld.igds.common.dto;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 业务数据:粮食温度湿度统计信息
 * 
 * @author Andy
 *
 */
@Data
public class DepotParam implements Serializable {
 
    
    private static final long serialVersionUID = 1L;
 
    @PropertyDef(label = "组织编码", description = "")
    private String companyId;
 
    @PropertyDef(label = "所属仓库", description = "仓库编号")
    private String depotId;
 
    @PropertyDef(label = "仓库状态", description = "仓库状态")
    private String depotStatus;
 
    private Double weight;//重量信息,单位需要调整为吨
 
}