소스 검색

统计BUG修复

anderx 9 달 전
부모
커밋
97719b053a

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 87 - 8
src/main/java/com/goafanti/common/mapper/UserArchivesMapper.xml


+ 162 - 16
src/main/java/com/goafanti/common/model/UserArchives.java

@@ -3,6 +3,7 @@ package com.goafanti.common.model;
 import com.fasterxml.jackson.annotation.JsonFormat;
 
 import java.io.Serializable;
+import java.math.BigDecimal;
 import java.util.Date;
 
 
@@ -10,63 +11,63 @@ import java.util.Date;
  * 客户档案表(UserArchives)实体类
  *
  * @author makejava
- * @since 2024-08-12 10:38:57
+ * @since 2025-04-10 16:39:00
  */
 public class UserArchives implements Serializable {
-    private static final long serialVersionUID = -61985340141600786L;
+    private static final long serialVersionUID = -24714389986376108L;
 
     private Integer id;
 
     private String uid;
-/**
+    /**
      * 专利数
      */
     private Integer patentCount;
-/**
+    /**
      * 发明专利数
      */
     private Integer inventionPatentCount;
-/**
+    /**
      * 实用新型数
      */
     private Integer utilityModelCount;
-/**
+    /**
      * 外观专利数
      */
     private Integer appearancePatentCount;
-/**
+    /**
      * 软著数
      */
     private Integer softwareWorksCount;
-/**
+    /**
      * 其他数
      */
     private Integer otherCount;
-/**
+    /**
      * 财务数据
      */
     private String financialData;
-/**
-     * 前期沟通
+    /**
+     * 前期沟通-客户的难处
      */
     private String earlyCommunication;
-/**
+    /**
      * 面谈思路
      */
     private String interviewIdeas;
-/**
+    /**
      * 创建时间
      */
     private Date createTime;
-/**
+    /**
      * 企业数
      */
     private Integer enterpriseCount;
-/**
+    /**
      * 渠道考核指标
      */
     private String channelIndicators;
-/**
+    /**
      * 我方主要面谈及分工
      */
     private String interviewDistribution;
@@ -82,6 +83,55 @@ public class UserArchives implements Serializable {
      * 获奖状态 0=未参评,1=已参评,2=已获奖
      */
     private Integer awardsStatus;
+    /**
+     * 母/子公司数
+     */
+    private Integer companyCount;
+    /**
+     * 社保人数
+     */
+    private Integer socialSecurityCount;
+    /**
+     * 对外投资控股的企业数
+     */
+    private Integer externalInvestCount;
+    /**
+     * 对外投资控股的行业
+     */
+    private String externalInvestIndustry;
+    /**
+     * 对外投资控股的企业名称
+     */
+    private String externalInvestName;
+    /**
+     * 首次面谈时间
+     */
+    private Date firstInterviewDate;
+    /**
+     * 财务数据-营收(万元)
+     */
+    private BigDecimal financialRevenue;
+    /**
+     * 财务数据-税收(万元)
+     */
+    private BigDecimal financialTax;
+    /**
+     * 财务数据-资产(万元)
+     */
+    private BigDecimal financialProperty;
+    /**
+     * 财务数据-研发费用(万元)
+     */
+    private BigDecimal financialRd;
+    /**
+     * 客户的需求
+     */
+    private String customerDemand;
+    /**
+     * 面谈达成的目的
+     */
+    private String interviewPurpose;
+
 
     public Integer getId() {
         return id;
@@ -228,5 +278,101 @@ public class UserArchives implements Serializable {
         this.awardsStatus = awardsStatus;
     }
 
+    public Integer getCompanyCount() {
+        return companyCount;
+    }
+
+    public void setCompanyCount(Integer companyCount) {
+        this.companyCount = companyCount;
+    }
+
+    public Integer getSocialSecurityCount() {
+        return socialSecurityCount;
+    }
+
+    public void setSocialSecurityCount(Integer socialSecurityCount) {
+        this.socialSecurityCount = socialSecurityCount;
+    }
+
+    public Integer getExternalInvestCount() {
+        return externalInvestCount;
+    }
+
+    public void setExternalInvestCount(Integer externalInvestCount) {
+        this.externalInvestCount = externalInvestCount;
+    }
+
+    public String getExternalInvestIndustry() {
+        return externalInvestIndustry;
+    }
+
+    public void setExternalInvestIndustry(String externalInvestIndustry) {
+        this.externalInvestIndustry = externalInvestIndustry;
+    }
+
+    public String getExternalInvestName() {
+        return externalInvestName;
+    }
+
+    public void setExternalInvestName(String externalInvestName) {
+        this.externalInvestName = externalInvestName;
+    }
+
+    public Date getFirstInterviewDate() {
+        return firstInterviewDate;
+    }
+
+    public void setFirstInterviewDate(Date firstInterviewDate) {
+        this.firstInterviewDate = firstInterviewDate;
+    }
+
+    public BigDecimal getFinancialRevenue() {
+        return financialRevenue;
+    }
+
+    public void setFinancialRevenue(BigDecimal financialRevenue) {
+        this.financialRevenue = financialRevenue;
+    }
+
+    public BigDecimal getFinancialTax() {
+        return financialTax;
+    }
+
+    public void setFinancialTax(BigDecimal financialTax) {
+        this.financialTax = financialTax;
+    }
+
+    public BigDecimal getFinancialProperty() {
+        return financialProperty;
+    }
+
+    public void setFinancialProperty(BigDecimal financialProperty) {
+        this.financialProperty = financialProperty;
+    }
+
+    public BigDecimal getFinancialRd() {
+        return financialRd;
+    }
+
+    public void setFinancialRd(BigDecimal financialRd) {
+        this.financialRd = financialRd;
+    }
+
+    public String getCustomerDemand() {
+        return customerDemand;
+    }
+
+    public void setCustomerDemand(String customerDemand) {
+        this.customerDemand = customerDemand;
+    }
+
+    public String getInterviewPurpose() {
+        return interviewPurpose;
+    }
+
+    public void setInterviewPurpose(String interviewPurpose) {
+        this.interviewPurpose = interviewPurpose;
+    }
+
 }
 

+ 2 - 2
src/main/resources/props/config_local.properties

@@ -6,8 +6,8 @@ static.host=//static.jishutao.com/${kede.version}
 #static.host=//172.16.1.187/${kede.version}
 #avatar.host=//172.16.1.199:3000
 
-jdbc.url=jdbc\:mysql://localhost:3306/aft20250313?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false
-#jdbc.url=jdbc\:mysql://localhost:3306/aft?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false
+#jdbc.url=jdbc\:mysql://localhost:3306/aft20250313?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false
+jdbc.url=jdbc\:mysql://localhost:3306/aft?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false
 jdbc.username=root
 jdbc.password=123456
 #jdbc.url=jdbc:mysql://101.37.32.31:3306/aft?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false