Browse Source

客户档案汇总新增字段

anderx 8 months ago
parent
commit
d697204d38

+ 1 - 1
src/main/java/com/goafanti/common/mapper/UserArchivesMapper.xml

@@ -263,7 +263,7 @@
         ic.name as  industry ,b.business_scope as businessScope ,e.financial_data as financialData,
         e.early_communication as earlyCommunication,e.patent_count as patentCount,
         e.invention_patent_count as inventionPatentCount,e.utility_model_count as utilityModelCount,
-        e.appearance_patent_count as appearancePatentCount,e.software_works_count as softwareWorksCount,
+        e.appearance_patent_count as appearancePatentCount,e.software_works_count as softwareWorksCount,e.standard,
         e.other_count as otherCount,e.create_time as createTime,e.update_time as updateTime,
         e.company_count as companyCount ,e.social_security_count as socialSecurityCount,e.external_invest_count as externalInvestCount,
         e.external_invest_industry as externalInvestIndustry,e.external_invest_name as externalInvestName,

+ 9 - 0
src/main/java/com/goafanti/customer/bo/OutSelectUserArchives.java

@@ -46,6 +46,8 @@ public class OutSelectUserArchives {
     private Integer softwareWorksCount;
     @Excel(name = "其他数",width = 8)
     private Integer otherCount;
+    @Excel(name = "标准",width = 8,readConverterExp = "0=无,1=有")
+    private Integer standard;
     @Excel(name = "财务数据")
     private String financialData;
     @Excel(name = "前期沟通")
@@ -94,6 +96,13 @@ public class OutSelectUserArchives {
     private Date updateTime;
     private String publicContent;
 
+    public Integer getStandard() {
+        return standard;
+    }
+
+    public void setStandard(Integer standard) {
+        this.standard = standard;
+    }
 
     public Integer getCompanyCount() {
         return companyCount;