| 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("组织Fcode信息导入") | 
| public class FcodeImport { | 
|     @ExcelColumn(name="编码",value = "orgId",index = 1) | 
|     private String orgId; | 
|     @ExcelColumn(name="国家",value = "country",index = 2) | 
|     private String country; | 
|     @ExcelColumn(name="省份编码",value = "provinceCode",index = 3) | 
|     private String provinceCode; | 
|     @ExcelColumn(name="省份名称",value = "provinceName",index =4) | 
|     private String provinceName; | 
|     @ExcelColumn(name="城市编码",value = "cityCode",index = 5) | 
|     private String cityCode; | 
|     @ExcelColumn(name="城市名称",value = "cityName",index = 6) | 
|     private String cityName; | 
|     @ExcelColumn(name="县区代码",value = "areaCode",index = 7) | 
|     private String areaCode; | 
|     @ExcelColumn(name="县区名称",value = "areaName",index = 8) | 
|     private String areaName; | 
|     @ExcelColumn(name="乡镇",value = "town",index = 9) | 
|     private String town; | 
|     @ExcelColumn(name="注册地",value = "regAddr",index = 10) | 
|     private String regAddr; | 
|     @ExcelColumn(name="法人",value = "legalName",index = 11) | 
|     private String legalName; | 
|     @ExcelColumn(name="法人手机号码",value = "legalPhone",index = 12) | 
|     private String legalPhone; | 
|     @ExcelColumn(name="法人身份证号",value = "legalIdcode",index = 13) | 
|     private String legalIdcode; | 
|     @ExcelColumn(name="纳税登记证号码",value = "legalIdcode",index = 14) | 
|     private String taxRegCode; | 
|     @ExcelColumn(name="SCODE",value = "SCODE",index = 15) | 
|     private String scode; | 
|     @ExcelColumn(name="FCODE",value = "fcode",index = 16) | 
|     private String fcode; | 
| } |