Browse Source

ljx:新增招商辅助接口

ljx 1 month ago
parent
commit
79241becf1

+ 34 - 0
enteprise-admin/src/main/java/com/enteprise/attract_inv/controller/AttractInvController.java

@@ -0,0 +1,34 @@
+package com.enteprise.attract_inv.controller;
+
+import com.enteprise.attract_inv.domain.AttractInv;
+import com.enteprise.attract_inv.domain.dto.AttractInvReturnDto;
+import com.enteprise.attract_inv.service.IAttractInvService;
+import com.enteprise.common.core.controller.BaseController;
+import com.enteprise.common.core.page.TableDataInfo;
+import com.enteprise.growthRate.domain.GrowthRate;
+import com.enteprise.growthRate.domain.dto.GrowthRateDto;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+@RestController
+@RequestMapping("/attractInv/attractInv")
+public class AttractInvController extends BaseController {
+    @Autowired
+    private IAttractInvService attractInvService;
+
+    @PreAuthorize("@ss.hasPermi('attractInv:attractInv:list')")
+    @PostMapping("/analysis")
+    public TableDataInfo analysis(@RequestBody AttractInv attractInv)
+    {
+        AttractInvReturnDto data = attractInvService.getData(attractInv);
+        return getDataTable(Collections.singletonList(new ArrayList<>().add(data)));
+    }
+}

+ 77 - 0
enteprise-admin/src/main/java/com/enteprise/attract_inv/domain/AttractInv.java

@@ -0,0 +1,77 @@
+package com.enteprise.attract_inv.domain;
+
+public class AttractInv {
+
+    private double annualOutputValue;
+    private double taxPaid;
+    private double landArea;
+    private String typeNum;
+    private String code;
+    private int year;
+    private double averageOutputValuePerMuInRecentThreeYears;
+    private double averageTaxPerMuInRecentThreeYears;
+
+    public double getAnnualOutputValue() {
+        return annualOutputValue;
+    }
+
+    public void setAnnualOutputValue(double annualOutputValue) {
+        this.annualOutputValue = annualOutputValue;
+    }
+
+    public double getTaxPaid() {
+        return taxPaid;
+    }
+
+    public void setTaxPaid(double taxPaid) {
+        this.taxPaid = taxPaid;
+    }
+
+    public double getLandArea() {
+        return landArea;
+    }
+
+    public void setLandArea(double landArea) {
+        this.landArea = landArea;
+    }
+
+    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 int getYear() {
+        return year;
+    }
+
+    public void setYear(int year) {
+        this.year = year;
+    }
+
+    public double getAverageOutputValuePerMuInRecentThreeYears() {
+        return averageOutputValuePerMuInRecentThreeYears;
+    }
+
+    public void setAverageOutputValuePerMuInRecentThreeYears(double averageOutputValuePerMuInRecentThreeYears) {
+        this.averageOutputValuePerMuInRecentThreeYears = averageOutputValuePerMuInRecentThreeYears;
+    }
+
+    public double getAverageTaxPerMuInRecentThreeYears() {
+        return averageTaxPerMuInRecentThreeYears;
+    }
+
+    public void setAverageTaxPerMuInRecentThreeYears(double averageTaxPerMuInRecentThreeYears) {
+        this.averageTaxPerMuInRecentThreeYears = averageTaxPerMuInRecentThreeYears;
+    }
+}

+ 75 - 0
enteprise-admin/src/main/java/com/enteprise/attract_inv/domain/dto/AttractInvDto.java

@@ -0,0 +1,75 @@
+package com.enteprise.attract_inv.domain.dto;
+
+public class AttractInvDto {
+    /**
+     * 企业id
+     */
+    private Long id;
+
+    private String typeNum;
+
+    private String enterpriseName;
+    /**
+     * 企业近三年用地
+     */
+    private double landUsedInRecentThreeYears;
+    /**
+     * 企业近三年总值
+     */
+    private double averageAnnualOutputValue;
+    /**
+     * 近三年实缴税金
+     */
+    private double averageAnnualTaxPaid;
+
+
+    public String getEnterpriseName() {
+        return enterpriseName;
+    }
+
+    public void setEnterpriseName(String enterpriseName) {
+        this.enterpriseName = enterpriseName;
+    }
+
+    public String getTypeNum() {
+        return typeNum;
+    }
+
+    public void setTypeNum(String typeNum) {
+        this.typeNum = typeNum;
+    }
+
+    public Long getId() {
+        return id;
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    public double getLandUsedInRecentThreeYears() {
+        return landUsedInRecentThreeYears;
+    }
+
+    public void setLandUsedInRecentThreeYears(double landUsedInRecentThreeYears) {
+        this.landUsedInRecentThreeYears = landUsedInRecentThreeYears;
+    }
+
+    public double getAverageAnnualOutputValue() {
+        return averageAnnualOutputValue;
+    }
+
+    public void setAverageAnnualOutputValue(double averageAnnualOutputValue) {
+        this.averageAnnualOutputValue = averageAnnualOutputValue;
+    }
+
+
+    public double getAverageAnnualTaxPaid() {
+        return averageAnnualTaxPaid;
+    }
+
+    public void setAverageAnnualTaxPaid(double averageAnnualTaxPaid) {
+        this.averageAnnualTaxPaid = averageAnnualTaxPaid;
+    }
+
+}

+ 33 - 0
enteprise-admin/src/main/java/com/enteprise/attract_inv/domain/dto/AttractInvReturnDto.java

@@ -0,0 +1,33 @@
+package com.enteprise.attract_inv.domain.dto;
+
+import java.util.List;
+
+public class AttractInvReturnDto {
+    private double standardA;
+    private double standardB;
+    private List<AttractInvDto> list;
+
+    public double getStandardA() {
+        return standardA;
+    }
+
+    public void setStandardA(double standardA) {
+        this.standardA = standardA;
+    }
+
+    public double getStandardB() {
+        return standardB;
+    }
+
+    public void setStandardB(double standardB) {
+        this.standardB = standardB;
+    }
+
+    public List<AttractInvDto> getList() {
+        return list;
+    }
+
+    public void setList(List<AttractInvDto> list) {
+        this.list = list;
+    }
+}

+ 10 - 0
enteprise-admin/src/main/java/com/enteprise/attract_inv/service/IAttractInvService.java

@@ -0,0 +1,10 @@
+package com.enteprise.attract_inv.service;
+
+import com.enteprise.attract_inv.domain.AttractInv;
+import com.enteprise.attract_inv.domain.dto.AttractInvReturnDto;
+
+import java.util.List;
+
+public interface IAttractInvService {
+    AttractInvReturnDto getData(AttractInv attractInv);
+}

+ 109 - 0
enteprise-admin/src/main/java/com/enteprise/attract_inv/service/impl/AttractInvServiceImpl.java

@@ -0,0 +1,109 @@
+package com.enteprise.attract_inv.service.impl;
+
+import com.enteprise.attract_inv.domain.AttractInv;
+import com.enteprise.attract_inv.domain.dto.AttractInvDto;
+import com.enteprise.attract_inv.domain.dto.AttractInvReturnDto;
+import com.enteprise.attract_inv.service.IAttractInvService;
+import com.enteprise.base_data_year.domain.EnterpriseBaseDataYear;
+import com.enteprise.base_data_year.mapper.EnterpriseBaseDataYearMapper;
+import com.enteprise.enterprise.domain.Enterprise;
+import com.enteprise.enterprise.dto.EnterpriseDto;
+import com.enteprise.enterprise.mapper.EnterpriseMapper;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.ArrayList;
+import java.util.List;
+
+@Service
+public class AttractInvServiceImpl implements IAttractInvService {
+    @Autowired
+    private EnterpriseBaseDataYearMapper enterpriseBaseDataYearMapper;
+    @Autowired
+    private EnterpriseMapper enterpriseMapper;
+    @Override
+    public AttractInvReturnDto getData(AttractInv attractInv) {
+        AttractInvReturnDto attractInvReturnDto = new AttractInvReturnDto();
+        String code = attractInv.getCode();
+        String typeNum = attractInv.getTypeNum();
+        int year = attractInv.getYear();
+        //获取行业总产值和行业总用地
+        List<Long> aList = new ArrayList<>();
+        List<Long> bList = new ArrayList<>();
+        double averageAnnualOutputValue = 0;
+        double averageAnnualTaxPaid = 0;
+        for (int i = 1; i<4; i++) {
+            EnterpriseBaseDataYear dataYear = new EnterpriseBaseDataYear();
+            //近三年行业数据
+            Long areaSum = 0L;
+            Long taxSum = 0L;
+            Long industrialSum = 0L;
+            dataYear.setYear(String.valueOf(year - i));
+            dataYear.setCode(code);
+            List<EnterpriseBaseDataYear> yearList = enterpriseBaseDataYearMapper.selectEnterpriseBaseDataYearList(dataYear);
+            for (EnterpriseBaseDataYear item : yearList){
+                areaSum += item.getLandArea();
+                taxSum += item.getPaidTax();
+                industrialSum += item.getTotalIndustrialValue();
+            }
+            long a = taxSum / areaSum;
+            long b = industrialSum / areaSum;
+            if (a != 0 ){
+                aList.add(a);
+            }
+            if (b != 0){
+                bList.add(b);
+            }
+        }
+        if (!aList.isEmpty()){
+            for (Long a : aList){
+                averageAnnualOutputValue += a;
+            }
+        }
+        if (!bList.isEmpty()){
+            for (Long b : bList){
+                averageAnnualTaxPaid += b;
+            }
+        }
+        //计算基准值
+        attractInvReturnDto.setStandardA(averageAnnualOutputValue/3*1.5);
+        attractInvReturnDto.setStandardB(averageAnnualTaxPaid/3*1.5);
+
+
+        //筛选企业
+        ArrayList<AttractInvDto> attractInvDtos = new ArrayList<>();
+        Enterprise enterprise = new Enterprise();
+        enterprise.setTypeNum(typeNum);
+        enterprise.setCode(code);
+        List<EnterpriseDto> enterpriseDtos = enterpriseMapper.selectAllWithType(enterprise);
+        //计算各企业的近三年
+        for (EnterpriseDto dto : enterpriseDtos){
+            AttractInvDto attractInvDto = new AttractInvDto();
+            String enterpriseName = dto.getEnterpriseName();
+            attractInvDto.setId(dto.getId());
+            attractInvDto.setTypeNum(dto.getTypeNum());
+            attractInvDto.setEnterpriseName(enterpriseName);
+            //近三年企业数据
+            double areaSum = 0;
+            double taxSum = 0;
+            double industrialSum = 0;
+            for (int i = 1; i<4; i++) {
+                EnterpriseBaseDataYear dataYear = new EnterpriseBaseDataYear();
+                dataYear.setYear(String.valueOf(year - i));
+                dataYear.setEnterpriseName(enterpriseName);
+                List<EnterpriseBaseDataYear> yearList = enterpriseBaseDataYearMapper.selectEnterpriseBaseDataYearList(dataYear);
+                areaSum += yearList.get(0).getLandArea();
+                taxSum += yearList.get(0).getPaidTax();
+                industrialSum += yearList.get(0).getTotalIndustrialValue();
+            }
+            //计算该企业近三年的用地、年均产值、年均实缴税金
+            attractInvDto.setAverageAnnualOutputValue(industrialSum/3);
+            attractInvDto.setAverageAnnualTaxPaid(taxSum/3);
+            attractInvDto.setLandUsedInRecentThreeYears(areaSum);
+            //添加到返回list
+            attractInvDtos.add(attractInvDto);
+        }
+        attractInvReturnDto.setList(attractInvDtos);
+        return attractInvReturnDto;
+    }
+}