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; 
 | 
} 
 |