liukangdong
2024-09-29 b2d360d9113b6955287108ca9e90d76a1f3c1419
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
package com.doumee.dao.admin.request;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * 组织信息导入
 * @author 江蹄蹄
 * @date 2024/01/16 10:03
 */
@Data
@ApiModel("组织信息导入")
public class ShopImport {
    @ExcelColumn(name="编码",value = "orgId",index = 1)
    private String orgId;
    @ExcelColumn(name="名称",value = "name",index = 2)
    private String name;
    @ExcelColumn(name="部门代码",value = "phone",index = 3)
    private String code;
    @ExcelColumn(name="状态 0正常 1禁用 2已删除",value = "status",index =4)
    private Integer status;
    @ExcelColumn(name="部门一级类型",value = "type",index = 5)
    private Integer type;
    @ExcelColumn(name="部门二级类型",value = "type",index = 6)
    private Integer secondType;
    @ExcelColumn(name="部门属性",value = "attribute",index = 7)
    private Integer attribute;
    @ExcelColumn(name="上级部门编码",value = "parentOrgId",index = 8)
    private String parentOrgId;
    @ExcelColumn(name="品类编码",value = "品类编码",index = 9)
    private String unitCode;
    @ExcelColumn(name="SCODE",value = "SCODE",index = 10)
    private String scode;
}