rentaiming
2024-06-28 0219f0fc8f8b79cb50a9e1004b10d63a0edbb9dd
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package com.ruoyi.management.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.util.Date;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
/**
 * <p>
 * 仓库管理
 * </p>
 *
 * @author hjl
 * @since 2024-06-25
 */
@Getter
@Setter
@TableName("sl_store_management")
@ApiModel(value = "SlStoreManagement对象", description = "仓库管理")
public class SlStoreManagement {
 
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
 
    @ApiModelProperty("仓库名称")
    @TableField("store_management_name")
    private String storeManagementName;
 
    @ApiModelProperty("仓库编号")
    @TableField("store_management_no")
    private String storeManagementNo;
 
    @ApiModelProperty("仓库层数 1代表一层,2代表两层,3代表三层")
    @TableField("store_management_number")
    private Integer storeManagementNumber;
 
    @ApiModelProperty("仓库等级 0全部 1省级,2市州级,3市县级,5乡镇级,6 经营单位")
    @TableField("store_management_grade")
    private Integer storeManagementGrade;
 
    /** 所属省名称 */
    @TableField("province_name")
    private String provinceName;
 
    /** 所属省code */
    @TableField("province_code")
    private String provinceCode;
 
    /** 城市名称 */
    @TableField("city_name")
    private String cityName;
 
    /** 城市code */
    @TableField("city_code")
    private String cityCode;
 
    /** 所属区县名称 */
    @TableField("county_name")
    private String countyName;
 
    /** 所属区县code */
    @TableField("county_code")
    private String countyCode;
 
    /** 所属街道名称 */
    @TableField("town_name")
    private String townName;
 
    /** 所属街道code */
    @TableField("town_code")
    private String townCode;
 
    @ApiModelProperty("主任id-仓库管理员选择的多个逗号隔各开")
    @TableField("director_id")
    private String directorId;
 
    @ApiModelProperty("主管id-仓库管理员选择的多个逗号隔各开")
    @TableField("competent_id")
    private String competentId;
 
    @ApiModelProperty("管理员id多个逗号隔各开")
    @TableField("administrator_id")
    private String administratorId;
 
    @ApiModelProperty("仓库地址")
    @TableField("store_management_adder")
    private String storeManagementAdder;
 
    @ApiModelProperty("仓库说明")
    @TableField("store_management_explain")
    private String storeManagementExplain;
 
    @ApiModelProperty("删除标志(0代表存在 2代表删除)")
    @TableField("del_flag")
    private String delFlag;
 
    @ApiModelProperty("创建者")
    @TableField("create_by")
    private String createBy;
 
    @ApiModelProperty("创建时间")
    @TableField("create_time")
    private Date createTime;
 
    @ApiModelProperty("更新者")
    @TableField("update_by")
    private String updateBy;
 
    @ApiModelProperty("更新时间")
    @TableField("update_time")
    private Date updateTime;
 
 
}