feat(param): 添加企业导入参数的Excel注解支持
- 为纳税人识别号字段添加Excel注解 - 为注册号字段添加Excel注解 - 为组织机构代码字段添加Excel注解 - 为参保人数字段添加Excel注解 - 为参保人数所属年报字段添加Excel注解 - 为营业期限字段添加Excel注解 - 为国标行业门类字段添加Excel注解 - 为国标行业大类字段添加Excel注解 - 为国标行业中类字段添加Excel注解 - 为国标行业小类字段添加Excel注解 - 为曾用名字段添加Excel注解 - 为英文名字段添加Excel注解 - 为通信地址字段添加Excel注解 - 为通信地址邮箱字段添加Excel注解 - 为注册
This commit is contained in:
@@ -55,97 +55,100 @@ public class CreditNearbyCompanyImportParam implements Serializable {
|
||||
@Excel(name = "纳税人识别号")
|
||||
private String taxpayerCode;
|
||||
|
||||
@Schema(name = "注册号")
|
||||
@Excel(name = "注册号")
|
||||
private String registrationNumber;
|
||||
|
||||
@Schema(name = "组织机构代码")
|
||||
@Excel(name = "组织机构代码")
|
||||
private String organizationalCode;
|
||||
|
||||
@Schema(name = "参保人数")
|
||||
@Excel(name = "参保人数")
|
||||
private String numberOfInsuredPersons;
|
||||
|
||||
@Schema(name = "参保人数所属年报")
|
||||
@Excel(name = "参保人数所属年报")
|
||||
private String annualReport;
|
||||
|
||||
@Schema(name = "营业期限")
|
||||
@Excel(name = "营业期限")
|
||||
private String businessTerm;
|
||||
|
||||
@Schema(name = "国标行业门类")
|
||||
@Excel(name = "国标行业门类")
|
||||
private String nationalStandardIndustryCategories;
|
||||
|
||||
@Schema(name = "国标行业大类")
|
||||
@Excel(name = "国标行业大类")
|
||||
private String nationalStandardIndustryCategories2;
|
||||
|
||||
@Schema(name = "国标行业中类")
|
||||
@Excel(name = "国标行业中类")
|
||||
private String nationalStandardIndustryCategories3;
|
||||
|
||||
@Schema(name = "国标行业小类")
|
||||
@Excel(name = "国标行业小类")
|
||||
private String nationalStandardIndustryCategories4;
|
||||
|
||||
@Schema(name = "曾用名")
|
||||
@Excel(name = "曾用名")
|
||||
private String formerName;
|
||||
|
||||
@Schema(name = "英文名")
|
||||
@Excel(name = "英文名")
|
||||
private String englishName;
|
||||
|
||||
@Excel(name = "官网网址")
|
||||
private String domain;
|
||||
|
||||
@Schema(name = "通信地址")
|
||||
@Excel(name = "通信地址")
|
||||
private String mailingAddress;
|
||||
|
||||
@Schema(name = "通信地址邮箱")
|
||||
@Excel(name = "通信地址邮箱")
|
||||
private String mailingEmail;
|
||||
|
||||
@Schema(name = "注册地址邮编")
|
||||
@Excel(name = "注册地址邮编")
|
||||
private String postalCode;
|
||||
|
||||
@Schema(name = "电话")
|
||||
@Excel(name = "电话")
|
||||
private String tel;
|
||||
|
||||
@Schema(name = "企查查行业门类")
|
||||
@Excel(name = "更多电话")
|
||||
private String moreTel;
|
||||
|
||||
@Excel(name = "企查查行业门类")
|
||||
private String nationalStandardIndustryCategories5;
|
||||
|
||||
@Schema(name = "企查查行业大类")
|
||||
@Excel(name = "企查查行业大类")
|
||||
private String nationalStandardIndustryCategories6;
|
||||
|
||||
@Schema(name = "企查查行业中类")
|
||||
@Excel(name = "企查查行业中类")
|
||||
private String nationalStandardIndustryCategories7;
|
||||
|
||||
@Schema(name = "企查查行业小类")
|
||||
@Excel(name = "企查查行业小类")
|
||||
private String nationalStandardIndustryCategories8;
|
||||
|
||||
@Schema(name = "类型")
|
||||
@Excel(name = "类型")
|
||||
private Integer type;
|
||||
|
||||
@Schema(name = "登记机关")
|
||||
@Excel(name = "登记机关")
|
||||
private String registrationAuthority;
|
||||
|
||||
@Schema(name = "纳税人资质")
|
||||
@Excel(name = "纳税人资质")
|
||||
private String taxpayerQualification;
|
||||
|
||||
@Schema(name = "最新年报年份")
|
||||
@Excel(name = "最新年报年份")
|
||||
private String latestAnnualReportYear;
|
||||
|
||||
@Schema(name = "最新年报营业收入")
|
||||
@Excel(name = "最新年报营业收入")
|
||||
private String latestAnnualReportOnOperatingRevenue;
|
||||
|
||||
@Schema(name = "企查分")
|
||||
@Excel(name = "企查分")
|
||||
private String enterpriseScoreCheck;
|
||||
|
||||
@Schema(name = "信用等级")
|
||||
@Excel(name = "信用等级")
|
||||
private String creditRating;
|
||||
|
||||
@Schema(name = "科创分")
|
||||
@Excel(name = "科创分")
|
||||
private String cechnologyScore;
|
||||
|
||||
@Schema(name = "科创等级")
|
||||
@Excel(name = "科创等级")
|
||||
private String cechnologyLevel;
|
||||
|
||||
@Schema(name = "是否小微企业")
|
||||
@Excel(name = "是否小微企业")
|
||||
private String smallEnterprise;
|
||||
|
||||
@Schema(name = "企业(机构)类型")
|
||||
@Excel(name = "企业(机构)类型")
|
||||
private String institutionType;
|
||||
|
||||
@Excel(name = "企业规模")
|
||||
|
||||
Reference in New Issue
Block a user