Browse Source

Merge remote-tracking branch 'origin/dev_screen_data' into dev_screen_data

dev_shibei_match
wxz 5 years ago
parent
commit
9395002daa
  1. 14
      epmet-module/data-report/data-report-client/src/main/java/com/epmet/screen/dto/result/TreeResultDTO.java
  2. 13
      epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/dao/screen/ScreenCustomerGridDao.java
  3. 50
      epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/service/screen/impl/AgencyServiceImpl.java
  4. 8
      epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenCustomerAgencyDao.xml
  5. 15
      epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenCustomerGridDao.xml
  6. 43
      epmet-module/data-statistical/data-statistical-client/src/main/java/com/epmet/dto/indexcal/ExtremeValueDTO.java
  7. 13
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/controller/IndexCalculateController.java
  8. 4
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/dao/indexcoll/FactIndexPartyAblityCpcMonthlyDao.java
  9. 9
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/dao/screen/IndexCodeFieldReDao.java
  10. 12
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/entity/screen/IndexCodeFieldReEntity.java
  11. 5
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/entity/screen/IndexGroupDetailEntity.java
  12. 5
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/entity/screen/IndexGroupDetailTemplateEntity.java
  13. 2
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/model/IndexExcelDataListener.java
  14. 18
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/screen/CpcIndexCalculateService.java
  15. 34
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/screen/impl/CpcIndexCalculateServiceImpl.java
  16. 32
      epmet-module/data-statistical/data-statistical-server/src/main/resources/mapper/indexcoll/FactIndexPartyAblityCpcMonthlyDao.xml
  17. 6
      epmet-module/data-statistical/data-statistical-server/src/main/resources/mapper/screen/IndexCodeFieIdReDao.xml

14
epmet-module/data-report/data-report-client/src/main/java/com/epmet/screen/dto/result/TreeResultDTO.java

@ -29,6 +29,20 @@ public class TreeResultDTO implements Serializable {
@JsonIgnore @JsonIgnore
private String pids; private String pids;
/**
* 中心点位
*/
private List<Double> centerMark;
/**
* 机关级别
*/
@JsonIgnore
private String level;
@JsonIgnore
private String centerMarkA;
/** /**
* 子目录 * 子目录
*/ */

13
epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/dao/screen/ScreenCustomerGridDao.java

@ -17,10 +17,7 @@
package com.epmet.datareport.dao.screen; package com.epmet.datareport.dao.screen;
import com.epmet.screen.dto.result.AgencyDistributionResultDTO; import com.epmet.screen.dto.result.*;
import com.epmet.screen.dto.result.BranchResultDTO;
import com.epmet.screen.dto.result.ParymemberDistributionResultDTO;
import com.epmet.screen.dto.result.UserDistributionResultDTO;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
@ -66,5 +63,13 @@ public interface ScreenCustomerGridDao {
* @date 2020/8/19 10:30 上午 * @date 2020/8/19 10:30 上午
*/ */
List<ParymemberDistributionResultDTO> selectParymemberDistribution(@Param("parentId")String parentId); List<ParymemberDistributionResultDTO> selectParymemberDistribution(@Param("parentId")String parentId);
/**
* @Description 查询机关下的网格
* @param agencyId
* @author zxc
* @date 2020/8/26 5:29 下午
*/
List<TreeResultDTO> selectGridInfo(@Param("agencyId")String agencyId);
} }

50
epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/service/screen/impl/AgencyServiceImpl.java

@ -15,6 +15,7 @@ import com.epmet.datareport.service.screen.AgencyService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.List; import java.util.List;
/** /**
@ -52,11 +53,37 @@ public class AgencyServiceImpl implements AgencyService {
if (null == rootAgency){ if (null == rootAgency){
return new TreeResultDTO(); return new TreeResultDTO();
} }
List<TreeResultDTO> departmentList = this.getDepartmentList(("".equals(rootAgency.getPids()) || rootAgency.getPids().equals(NumConstant.ZERO_STR)) ? rootAgency.getValue():rootAgency.getPids().concat(",").concat(rootAgency.getValue())); List<Double> centerMark = this.getCenterMark(rootAgency.getCenterMarkA());
rootAgency.setChildren(departmentList); rootAgency.setCenterMark(centerMark.size() == NumConstant.ZERO ? new ArrayList<>() : centerMark);
if (rootAgency.getLevel().equals(ScreenConstant.COMMUNITY)){
List<TreeResultDTO> treeResultDTOS = screenCustomerGridDao.selectGridInfo(rootAgency.getValue());
rootAgency.setChildren(treeResultDTOS);
}else {
List<TreeResultDTO> departmentList = this.getDepartmentList(("".equals(rootAgency.getPids()) || rootAgency.getPids().equals(NumConstant.ZERO_STR)) ? rootAgency.getValue() : rootAgency.getPids().concat(",").concat(rootAgency.getValue()));
rootAgency.setChildren(departmentList);
}
return rootAgency; return rootAgency;
} }
/**
* @Description 处理centerMark
* @param centerMark
* @author zxc
* @date 2020/8/26 5:18 下午
*/
public List<Double> getCenterMark(String centerMark){
if (centerMark.length() == NumConstant.ZERO) {
return new ArrayList<>();
}
List<Double> result = new ArrayList<>();
String substring = centerMark.substring(2, centerMark.length() - 2);
String[] split = substring.split(",");
for (String s : split) {
result.add(Double.valueOf(s));
}
return result;
}
/** /**
* @Description 递归查询填充下级 * @Description 递归查询填充下级
* @param subAgencyPids * @param subAgencyPids
@ -66,10 +93,21 @@ public class AgencyServiceImpl implements AgencyService {
private List<TreeResultDTO> getDepartmentList(String subAgencyPids) { private List<TreeResultDTO> getDepartmentList(String subAgencyPids) {
List<TreeResultDTO> subAgencyList = screenCustomerAgencyDao.selectSubAgencyList(subAgencyPids); List<TreeResultDTO> subAgencyList = screenCustomerAgencyDao.selectSubAgencyList(subAgencyPids);
if (subAgencyList.size() > NumConstant.ZERO) { if (subAgencyList.size() > NumConstant.ZERO) {
for (TreeResultDTO sub : subAgencyList) { subAgencyList.forEach(sub -> {
List<TreeResultDTO> subAgency = getDepartmentList(sub.getPids() + "," + sub.getValue()); List<Double> centerMark = this.getCenterMark(sub.getCenterMarkA());
sub.setChildren(subAgency); sub.setCenterMark(centerMark.size() == NumConstant.ZERO ? new ArrayList<>() : centerMark);
} if (sub.getLevel().equals(ScreenConstant.COMMUNITY)){
List<TreeResultDTO> treeResultDTOS = screenCustomerGridDao.selectGridInfo(sub.getValue());
treeResultDTOS.forEach(tree -> {
List<Double> centerMarkTree = this.getCenterMark(tree.getCenterMarkA());
tree.setCenterMark(centerMarkTree.size() == NumConstant.ZERO ? new ArrayList<>() : centerMarkTree);
});
sub.setChildren(treeResultDTOS);
}else {
List<TreeResultDTO> subAgency = getDepartmentList(sub.getPids() + "," + sub.getValue());
sub.setChildren(subAgency);
}
});
} }
return subAgencyList; return subAgencyList;
} }

8
epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenCustomerAgencyDao.xml

@ -8,7 +8,9 @@
SELECT SELECT
agency_name AS label, agency_name AS label,
agency_id AS value, agency_id AS value,
pids AS pids pids AS pids,
IFNULL(center_mark,'') AS centerMarkA,
level AS level
FROM FROM
screen_customer_agency screen_customer_agency
WHERE WHERE
@ -22,7 +24,9 @@
SELECT SELECT
agency_id AS value, agency_id AS value,
agency_name AS label, agency_name AS label,
pids AS pids pids AS pids,
IFNULL(center_mark,'') AS centerMarkA,
level AS level
FROM FROM
screen_customer_agency screen_customer_agency
WHERE WHERE

15
epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenCustomerGridDao.xml

@ -67,4 +67,19 @@
AND scg.del_flag = 0 AND scg.del_flag = 0
AND sutd.parent_id = #{parentId} AND sutd.parent_id = #{parentId}
</select> </select>
<!-- 查询机关下的网格 -->
<select id="selectGridInfo" resultType="com.epmet.screen.dto.result.TreeResultDTO">
SELECT
grid_id AS value,
grid_name AS label,
IFNULL(center_mark,'') AS centerMarkA
FROM
screen_customer_grid
WHERE
del_flag = '0'
AND parent_agency_id = #{agencyId}
ORDER BY
created_time DESC
</select>
</mapper> </mapper>

43
epmet-module/data-statistical/data-statistical-client/src/main/java/com/epmet/dto/indexcal/ExtremeValueDTO.java

@ -0,0 +1,43 @@
package com.epmet.dto.indexcal;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* 最值通用DTO
*
* @author yinzuomei@elink-cn.com
* @date 2020/8/26 10:39
*/
@Data
public class ExtremeValueDTO implements Serializable {
private static final long serialVersionUID = -2227402439857459667L;
/**
* 最小值
*/
private BigDecimal minValue1;
private BigDecimal minValue2;
private BigDecimal minValue3;
private BigDecimal minValue4;
private BigDecimal minValue5;
private BigDecimal minValue6;
private BigDecimal minValue7;
private BigDecimal minValue8;
private BigDecimal minValue9;
private BigDecimal minValue10;
private BigDecimal maxValue1;
private BigDecimal maxValue2;
private BigDecimal maxValue3;
private BigDecimal maxValue4;
private BigDecimal maxValue5;
private BigDecimal maxValue6;
private BigDecimal maxValue7;
private BigDecimal maxValue8;
private BigDecimal maxValue9;
private BigDecimal maxValue10;
}

13
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/controller/IndexCalculateController.java

@ -2,7 +2,9 @@ package com.epmet.controller;
import com.epmet.commons.extappauth.bean.ExternalAppRequestParam; import com.epmet.commons.extappauth.bean.ExternalAppRequestParam;
import com.epmet.commons.tools.utils.Result; import com.epmet.commons.tools.utils.Result;
import com.epmet.dto.indexcal.CalculateCommonFormDTO;
import com.epmet.dto.screen.form.IndexCalculateForm; import com.epmet.dto.screen.form.IndexCalculateForm;
import com.epmet.service.screen.CpcIndexCalculateService;
import com.epmet.service.screen.IndexCalculateService; import com.epmet.service.screen.IndexCalculateService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
@ -21,7 +23,10 @@ import org.springframework.web.bind.annotation.RestController;
public class IndexCalculateController { public class IndexCalculateController {
@Autowired @Autowired
private IndexCalculateService indexCalculateService; private IndexCalculateService indexCalculateService;
@Autowired
private CpcIndexCalculateService cpcIndexCalculateService;
/** /**
* 1按照客户计算指标(按照月份) * 1按照客户计算指标(按照月份)
@ -37,6 +42,12 @@ public class IndexCalculateController {
indexCalculateService.indexCalculate(formDTO); indexCalculateService.indexCalculate(formDTO);
return new Result(); return new Result();
} }
@PostMapping("getMax")
public Result getMax(){
CalculateCommonFormDTO calculateCommonFormDTO = new CalculateCommonFormDTO("c1","202008");
cpcIndexCalculateService.cpcIndexCalculate(calculateCommonFormDTO);
return new Result();
}
/* *//** /* *//**
* 2党建能力-网格相关指标上报(按照月份) * 2党建能力-网格相关指标上报(按照月份)

4
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/dao/indexcoll/FactIndexPartyAblityCpcMonthlyDao.java

@ -23,7 +23,9 @@ import com.epmet.entity.indexcoll.FactIndexPartyAblityCpcMonthlyEntity;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import java.math.BigDecimal;
import java.util.List; import java.util.List;
import java.util.Map;
/** /**
* 党建能力-党员相关的事实表 * 党建能力-党员相关的事实表
@ -69,4 +71,6 @@ public interface FactIndexPartyAblityCpcMonthlyDao extends BaseDao<FactIndexPart
@Param("customerId") String customerId); @Param("customerId") String customerId);
List<FactIndexPartyAblityCpcMonthlyEntity> getCountByMonthId(@Param("customerId") String customerId, @Param("monthId") String monthId); List<FactIndexPartyAblityCpcMonthlyEntity> getCountByMonthId(@Param("customerId") String customerId, @Param("monthId") String monthId);
Map<String, BigDecimal> getExtremeValue(@Param("customerId") String customerId);
} }

9
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/dao/screen/IndexCodeFieldReDao.java

@ -0,0 +1,9 @@
package com.epmet.dao.screen;
import com.epmet.commons.mybatis.dao.BaseDao;
import com.epmet.entity.screen.IndexCodeFieldReEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface IndexCodeFieldReDao extends BaseDao<IndexCodeFieldReEntity> {
}

12
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/entity/screen/IndexCodeFieldReEntity.java

@ -0,0 +1,12 @@
package com.epmet.entity.screen;
import com.baomidou.mybatisplus.annotation.TableName;
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("index_code_field_re")
public class IndexCodeFieldReEntity extends BaseEpmetEntity {
}

5
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/entity/screen/IndexGroupDetailEntity.java

@ -52,6 +52,11 @@ public class IndexGroupDetailEntity extends BaseEpmetEntity {
*/ */
private String indexId; private String indexId;
/**
* 指标code
*/
private String indexCode;
/** /**
* 权重同一组权重总和=1 * 权重同一组权重总和=1
*/ */

5
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/entity/screen/IndexGroupDetailTemplateEntity.java

@ -47,6 +47,11 @@ public class IndexGroupDetailTemplateEntity extends BaseEpmetEntity {
*/ */
private String indexId; private String indexId;
/**
* 指标code
*/
private String indexCode;
/** /**
* 权重同一组权重总和=1 * 权重同一组权重总和=1
*/ */

2
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/model/IndexExcelDataListener.java

@ -207,10 +207,12 @@ public class IndexExcelDataListener extends AnalysisEventListener<IndexModel> {
templateEntity.setIndexId(indexDictEntity.getId()); templateEntity.setIndexId(indexDictEntity.getId());
if (level == 5) { if (level == 5) {
templateEntity.setIndexCode(Pinyin4jUtil.getFirstSpellPinYin(index.getLevel5Index(),true));
String level5WeightStr = index.getLevel5Weight().replace("%", ""); String level5WeightStr = index.getLevel5Weight().replace("%", "");
templateEntity.setWeight(new BigDecimal(level5WeightStr).divide(new BigDecimal(100), 4, RoundingMode.HALF_UP)); templateEntity.setWeight(new BigDecimal(level5WeightStr).divide(new BigDecimal(100), 4, RoundingMode.HALF_UP));
indexGroupDetailMap.put(index.getLevel5Index(), templateEntity); indexGroupDetailMap.put(index.getLevel5Index(), templateEntity);
} else { } else {
templateEntity.setIndexCode(Pinyin4jUtil.getFirstSpellPinYin(indexDictEntity.getIndexName(),true));
indexGroupDetailMap.put(indexDictEntity.getIndexName(), templateEntity); indexGroupDetailMap.put(indexDictEntity.getIndexName(), templateEntity);
templateEntity.setWeight(new BigDecimal(index.getWeight()).divide(new BigDecimal(100), 4, RoundingMode.HALF_UP)); templateEntity.setWeight(new BigDecimal(index.getWeight()).divide(new BigDecimal(100), 4, RoundingMode.HALF_UP));
} }

18
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/screen/CpcIndexCalculateService.java

@ -0,0 +1,18 @@
package com.epmet.service.screen;
import com.epmet.dto.indexcal.CalculateCommonFormDTO;
/**
* 党员指标计算service
*
* @author liujianjun@elink-cn.com
* @date 2020/8/18 10:25
*/
public interface CpcIndexCalculateService {
/**
* desc计算党员相关指标
* @param formDTO
* @return
*/
Boolean cpcIndexCalculate(CalculateCommonFormDTO formDTO);
}

34
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/screen/impl/CpcIndexCalculateServiceImpl.java

@ -0,0 +1,34 @@
package com.epmet.service.screen.impl;
import com.alibaba.fastjson.JSON;
import com.epmet.dao.indexcoll.FactIndexPartyAblityCpcMonthlyDao;
import com.epmet.dto.indexcal.CalculateCommonFormDTO;
import com.epmet.entity.indexcoll.FactIndexPartyAblityCpcMonthlyEntity;
import com.epmet.service.screen.CpcIndexCalculateService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
@Slf4j
@Service
public class CpcIndexCalculateServiceImpl implements CpcIndexCalculateService {
@Autowired
private FactIndexPartyAblityCpcMonthlyDao factIndexPartyAblityCpcMonthlyDao;
@Override
public Boolean cpcIndexCalculate(CalculateCommonFormDTO formDTO) {
//计算最大最小值
Map<String, BigDecimal> minAndMaxList = factIndexPartyAblityCpcMonthlyDao.getExtremeValue(formDTO.getCustomerId());
if (CollectionUtils.isEmpty(minAndMaxList)){
log.warn("customerId:{} have not any record",formDTO.getCustomerId());
return false;
}
log.info(JSON.toJSONString(minAndMaxList));
List<FactIndexPartyAblityCpcMonthlyEntity> list = factIndexPartyAblityCpcMonthlyDao.getCountByMonthId(formDTO.getCustomerId(), formDTO.getMonthId());
return null;
}
}

32
epmet-module/data-statistical/data-statistical-server/src/main/resources/mapper/indexcoll/FactIndexPartyAblityCpcMonthlyDao.xml

@ -13,7 +13,7 @@
<result property="quarterId" column="QUARTER_ID"/> <result property="quarterId" column="QUARTER_ID"/>
<result property="yearId" column="YEAR_ID"/> <result property="yearId" column="YEAR_ID"/>
<result property="createTopicCount" column="CREATE_TOPIC_COUNT"/> <result property="createTopicCount" column="CREATE_TOPIC_COUNT"/>
<result property="joinTopicCount" column="JOIN__TOPIC_COUNT"/> <result property="joinTopicCount" column="JOIN_TOPIC_COUNT"/>
<result property="shiftIssueCount" column="SHIFT_ISSUE_COUNT"/> <result property="shiftIssueCount" column="SHIFT_ISSUE_COUNT"/>
<result property="shiftProjectCount" column="SHIFT_PROJECT_COUNT"/> <result property="shiftProjectCount" column="SHIFT_PROJECT_COUNT"/>
<result property="joinThreeMeetsCount" column="JOIN_THREE_MEETS_COUNT"/> <result property="joinThreeMeetsCount" column="JOIN_THREE_MEETS_COUNT"/>
@ -48,7 +48,7 @@
QUARTER_ID, QUARTER_ID,
YEAR_ID, YEAR_ID,
CREATE_TOPIC_COUNT, CREATE_TOPIC_COUNT,
JOIN__TOPIC_COUNT, JOIN_TOPIC_COUNT,
SHIFT_ISSUE_COUNT, SHIFT_ISSUE_COUNT,
SHIFT_PROJECT_COUNT, SHIFT_PROJECT_COUNT,
JOIN_THREE_MEETS_COUNT, JOIN_THREE_MEETS_COUNT,
@ -97,7 +97,7 @@
<select id="getCountByMonthId" resultMap="factIndexPartyAblityCpcMonthlyMap"> <select id="getCountByMonthId" resultMap="factIndexPartyAblityCpcMonthlyMap">
SELECT SELECT
CREATE_TOPIC_COUNT, CREATE_TOPIC_COUNT,
JOIN__TOPIC_COUNT, JOIN_TOPIC_COUNT,
SHIFT_ISSUE_COUNT, SHIFT_ISSUE_COUNT,
SHIFT_PROJECT_COUNT, SHIFT_PROJECT_COUNT,
JOIN_THREE_MEETS_COUNT, JOIN_THREE_MEETS_COUNT,
@ -112,4 +112,30 @@
AND MONTH_ID = #{monthId,jdbcType=VARCHAR} AND MONTH_ID = #{monthId,jdbcType=VARCHAR}
</select> </select>
<select id="getExtremeValue" resultType="java.util.Map">
SELECT
MIN( CREATE_TOPIC_COUNT ) minValue1,
MAX( CREATE_TOPIC_COUNT ) maxValue1,
MAX( JOIN_TOPIC_COUNT ) minValue2,
MAX( JOIN_TOPIC_COUNT ) maxValue2,
MIN( SHIFT_ISSUE_COUNT ) minValue3,
MAX( SHIFT_ISSUE_COUNT ) maxValue3,
MIN( SHIFT_PROJECT_COUNT ) minValue4,
MAX( SHIFT_PROJECT_COUNT ) maxValue4,
MIN( JOIN_THREE_MEETS_COUNT ) minValue5,
MAX( JOIN_THREE_MEETS_COUNT ) maxValue5,
MIN( GROUP_USER_COUNT ) minValue6,
MAX( GROUP_USER_COUNT ) maxValue6,
MIN( GROUP_ACTIVE_USER_COUNT ) minValue7,
MAX( GROUP_ACTIVE_USER_COUNT ) maxValue7,
MIN( GROUP_TOPIC_COUNT ) minValue8,
MAX( GROUP_TOPIC_COUNT ) maxValue8,
MIN( TOPIC_TO_ISSUE_RATIO ) minValue9,
MAX( TOPIC_TO_ISSUE_RATIO ) maxValue9
FROM
fact_index_party_ablity_cpc_monthly
WHERE
CUSTOMER_ID = #{customerId,jdbcType=VARCHAR} AND DEL_FLAG = '0'
</select>
</mapper> </mapper>

6
epmet-module/data-statistical/data-statistical-server/src/main/resources/mapper/screen/IndexCodeFieIdReDao.xml

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.epmet.dao.screen.IndexCodeFieldReDao">
</mapper>
Loading…
Cancel
Save