xieb
2023-05-30 357a6b50bd9490f765056d11738c16ed2c4cb2b1
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package cn.gistack.sm.materials.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springblade.core.mp.base.BaseEntity;
 
import java.io.Serializable;
 
/**
 * @PROJECT_NAME: skjcmanager
 * @DESCRIPTION: 应急物资管理
 * @USER: aix
 * @DATE: 2023/5/30 14:52
 */
@Data
@TableName("sm_materials_manage")
@ApiModel(value = "应急物资管理对象", description = "应急物资管理对象")
public class MaterialsManage extends BaseEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 水库id
     */
    @ApiModelProperty(value = "水库id")
    private String resGuid;
 
    /**
     * 水库名称
     */
    @ApiModelProperty(value = "水库名称")
    private String resName;
 
    /**
     * 行政区
     */
    @ApiModelProperty(value = "行政区")
    private String adCode;
 
    /**
     * 物资类型
     */
    @ApiModelProperty(value = "物资类型")
    private String materialsType;
 
    /**
     * 物资名称
     */
    @ApiModelProperty(value = "物资名称")
    private String materialsName;
 
    /**
     * 物资数量
     */
    @ApiModelProperty(value = "物资数量")
    private Integer materialsAmount;
 
    /**
     * 物资单位
     */
    @ApiModelProperty(value = "物资单位")
    private String materialsUnit;
 
    /**
     * 备注
     */
    @ApiModelProperty(value = "备注")
    private String remarks;
 
}