zhangfeng
2022-09-21 17f8dd032fc267b38cdddc88de416aeab2600f90
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.gkhy.safePlatform.emergency.rpc.api.model.dto.resp;
 
import java.util.List;
 
/**
 * 返回物资类型以及物资实体
 */
public class EmergencySuppliesTypeRPCResp {
    /**
     * 物资类型
     */
    private Byte materialType;
    /**
     * 物资类型名称
     */
    private String materialTypeName;
    /**
     * 该类型下的所有物资
     */
    private List<EmergencySuppliesRPCResp> list;
 
    public Byte getMaterialType() {
        return materialType;
    }
 
    public void setMaterialType(Byte materialType) {
        this.materialType = materialType;
    }
 
    public String getMaterialTypeName() {
        return materialTypeName;
    }
 
    public void setMaterialTypeName(String materialTypeName) {
        this.materialTypeName = materialTypeName;
    }
 
    public List<EmergencySuppliesRPCResp> getList() {
        return list;
    }
 
    public void setList(List<EmergencySuppliesRPCResp> list) {
        this.list = list;
    }
}