Explorar el Código

ljx:新增同比增速部分业务逻辑代码

ljx hace 1 mes
padre
commit
8de966ad91

+ 1 - 0
enteprise-admin/src/main/java/com/enteprise/enterprise/dto/EnterpriseDto.java

@@ -20,6 +20,7 @@ public class EnterpriseDto {
     @Excel(name = "分类名称")
     private String typeName;
 
+
     public String getTypeNum() {
         return typeNum;
     }

+ 4 - 0
enteprise-admin/src/main/java/com/enteprise/growthRate/controller/GrowthRateController.java

@@ -0,0 +1,4 @@
+package com.enteprise.growthRate.controller;
+
+public class GrowthRateController {
+}

+ 76 - 0
enteprise-admin/src/main/java/com/enteprise/growthRate/domain/GrowthRate.java

@@ -0,0 +1,76 @@
+package com.enteprise.growthRate.domain;
+
+public class GrowthRate {
+    /**
+     * 分析类型:工业产值、电力消费、应税收入、实缴税金、能源消耗、研发经费
+     */
+    private String analysisType;
+
+    private int year;
+
+    private int season;
+
+    private int startMonth;
+
+    private int endMonth;
+
+    private String typeNum;
+
+    private String code;
+
+    public String getTypeNum() {
+        return typeNum;
+    }
+
+    public void setTypeNum(String typeNum) {
+        this.typeNum = typeNum;
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code;
+    }
+
+    public String getAnalysisType() {
+        return analysisType;
+    }
+
+    public void setAnalysisType(String analysisType) {
+        this.analysisType = analysisType;
+    }
+
+    public int getYear() {
+        return year;
+    }
+
+    public void setYear(int year) {
+        this.year = year;
+    }
+
+    public int getSeason() {
+        return season;
+    }
+
+    public void setSeason(int season) {
+        this.season = season;
+    }
+
+    public int getStartMonth() {
+        return startMonth;
+    }
+
+    public void setStartMonth(int startMonth) {
+        this.startMonth = startMonth;
+    }
+
+    public int getEndMonth() {
+        return endMonth;
+    }
+
+    public void setEndMonth(int endMonth) {
+        this.endMonth = endMonth;
+    }
+}

+ 40 - 0
enteprise-admin/src/main/java/com/enteprise/growthRate/domain/dto/GrowthRateDto.java

@@ -0,0 +1,40 @@
+package com.enteprise.growthRate.domain.dto;
+
+public class GrowthRateDto {
+    /**
+     * 分析类型:工业产值、电力消费、应税收入、实缴税金、能源消耗、研发经费
+     */
+
+    /**
+     * 同比增速
+     */
+    private Double rate;
+
+    private String enterpriseName;
+
+    private String location;
+
+    public String getLocation() {
+        return location;
+    }
+
+    public void setLocation(String location) {
+        this.location = location;
+    }
+
+    public Double getRate() {
+        return rate;
+    }
+
+    public void setRate(Double rate) {
+        this.rate = rate;
+    }
+
+    public String getEnterpriseName() {
+        return enterpriseName;
+    }
+
+    public void setEnterpriseName(String enterpriseName) {
+        this.enterpriseName = enterpriseName;
+    }
+}

+ 10 - 0
enteprise-admin/src/main/java/com/enteprise/growthRate/service/IGrowthRateService.java

@@ -0,0 +1,10 @@
+package com.enteprise.growthRate.service;
+
+import com.enteprise.growthRate.domain.GrowthRate;
+import com.enteprise.growthRate.domain.dto.GrowthRateDto;
+
+import java.util.List;
+
+public interface IGrowthRateService {
+    List<GrowthRateDto> analysisGrowthRate(GrowthRate growthRate);
+}

+ 95 - 0
enteprise-admin/src/main/java/com/enteprise/growthRate/service/impl/GrowthRateServiceImpl.java

@@ -0,0 +1,95 @@
+package com.enteprise.growthRate.service.impl;
+
+import com.enteprise.base_data_month.domain.EnterpriseBaseDataMonth;
+import com.enteprise.base_data_month.mapper.EnterpriseBaseDataMonthMapper;
+import com.enteprise.enterprise.domain.Enterprise;
+import com.enteprise.enterprise.dto.EnterpriseDto;
+import com.enteprise.enterprise.mapper.EnterpriseMapper;
+import com.enteprise.growthRate.domain.GrowthRate;
+import com.enteprise.growthRate.domain.dto.GrowthRateDto;
+import com.enteprise.growthRate.service.IGrowthRateService;
+import org.springframework.beans.factory.annotation.Autowired;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class GrowthRateServiceImpl implements IGrowthRateService {
+    @Autowired
+    private EnterpriseMapper enterpriseMapper;
+    @Autowired
+    private EnterpriseBaseDataMonthMapper enterpriseBaseDataMonthMapper;
+    @Override
+    public List<GrowthRateDto> analysisGrowthRate(GrowthRate growthRate) {
+        String analysisType = growthRate.getAnalysisType();
+        int startMonth = growthRate.getStartMonth();
+        int endMonth = growthRate.getEndMonth();
+        int year = growthRate.getYear();
+        if (analysisType.isEmpty() || year == 0) {
+            return null;
+        } else {
+            ArrayList<GrowthRateDto> list = new ArrayList<>();
+            if (startMonth != 0 && endMonth != 0) {
+                //通过分类、行业代码过滤企业列表
+                Enterprise enterprise = new Enterprise();
+                enterprise.setCode(growthRate.getCode());
+                enterprise.setTypeNum(growthRate.getTypeNum());
+                List<EnterpriseDto> enterpriseDtos = enterpriseMapper.selectAllWithType(enterprise);
+                //每个企业从开始月份循环相加到结束月份
+                List<Integer> monthRange = getMonthRange(startMonth, endMonth);
+                for (EnterpriseDto enterpriseDto : enterpriseDtos){
+                    double sum = 0;
+                    double oldSum = 0;
+                    for (int nowMonth : monthRange){
+                        //计算对应月份范围数值
+                        EnterpriseBaseDataMonth dataMonth = new EnterpriseBaseDataMonth();
+                        dataMonth.setEnterpriseName(enterpriseDto.getEnterpriseName());
+                        dataMonth.setMonth(String.valueOf(nowMonth));
+                        dataMonth.setYear(String.valueOf(year));
+                        List<EnterpriseBaseDataMonth> dataMonths = enterpriseBaseDataMonthMapper.selectEnterpriseBaseDataMonthList(dataMonth);
+                        //重复操作获取去年对应的月份数据
+                        dataMonth.setYear(String.valueOf(year-1));
+                        List<EnterpriseBaseDataMonth> oldDataMonths = enterpriseBaseDataMonthMapper.selectEnterpriseBaseDataMonthList(dataMonth);
+                        if (analysisType.equals("totalIndustrialValue")) {
+                            sum += dataMonths.get(0).getTotalIndustrialValue();
+                            oldSum += oldDataMonths.get(0).getTotalIndustrialValue();
+                        }else if (analysisType.equals("powerConsume")){
+                            sum += dataMonths.get(0).getPowerConsume();
+                            oldSum += oldDataMonths.get(0).getPowerConsume();
+                        }else {
+
+                        }
+                    }
+                    //计算同比增速:(今年-去年)/去年
+                    double rate = (sum - oldSum) / oldSum;
+                    //初始化企业并把该企业的同比增速和其他数据放入list中
+                    GrowthRateDto growthRateDto = new GrowthRateDto();
+                    growthRateDto.setRate(rate);
+                    growthRateDto.setEnterpriseName(enterpriseDto.getEnterpriseName());
+                    growthRateDto.setLocation(enterpriseDto.getLocation());
+                    list.add(growthRateDto);
+                }
+
+
+            }
+            return list;
+        }
+    }
+
+
+    public static List<Integer> getMonthRange(int start, int end) {
+        // 创建一个列表以存储结果
+        List<Integer> months = new ArrayList<>();
+
+        // 确定区间的起始和结束值
+        int min = Math.min(start, end);
+        int max = Math.max(start, end);
+
+        // 使用循环将范围内的所有值添加到列表中
+        for (int i = min; i <= max; i++) {
+            months.add(i);
+        }
+
+        return months;
+    }
+
+}

+ 1 - 1
enteprise-admin/src/main/resources/mapper/base_data_month/EnterpriseBaseDataMonthMapper.xml

@@ -33,7 +33,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
     <select id="selectEnterpriseBaseDataMonthList" parameterType="EnterpriseBaseDataMonth" resultMap="EnterpriseBaseDataMonthResult">
         <include refid="selectEnterpriseBaseDataMonthVo"/>
         <where>
-            <if test="enterpriseName != null  and enterpriseName != ''"> and enterprise_name like concat('%', #{enterpriseName}, '%')</if>
+            <if test="enterpriseName != null  and enterpriseName != ''"> and enterprise_name = #{enterpriseName}</if>
             <if test="location != null  and location != ''"> and location = #{location}</if>
             <if test="code != null  and code != ''"> and code = #{code}</if>
             <if test="mainBusiness != null  and mainBusiness != ''"> and main_business = #{mainBusiness}</if>