Browse Source

居民类别配置调整

master
yinzuomei 3 years ago
parent
commit
6ab99298d7
  1. 9
      epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/form/IcResiCategoryStatsConfigFormDTO.java
  2. 14
      epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/result/IcResiCategoryStatsConfigResultDTO.java
  3. 8
      epmet-module/oper-customize/oper-customize-server/src/main/java/com/epmet/entity/IcResiCategoryStatsConfigEntity.java
  4. 5
      epmet-module/oper-customize/oper-customize-server/src/main/resources/mapper/IcResiCategoryStatsConfigDao.xml

9
epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/form/IcResiCategoryStatsConfigFormDTO.java

@ -74,5 +74,12 @@ public class IcResiCategoryStatsConfigFormDTO implements Serializable {
private Integer level2; private Integer level2;
private Integer level3; private Integer level3;
/**
* 自动匹配开启1不匹配0
*/
private String autoMatching;
/**
* 育龄妇女年龄范围英文逗号隔开的数字例如18,49
*/
private String ylfnValue;
} }

14
epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/result/IcResiCategoryStatsConfigResultDTO.java

@ -44,7 +44,10 @@ public class IcResiCategoryStatsConfigResultDTO implements Serializable {
*/ */
private String label; private String label;
/**
* 列名
*/
private String columnName;
/** /**
* 管理平台分类图标 * 管理平台分类图标
@ -84,4 +87,13 @@ public class IcResiCategoryStatsConfigResultDTO implements Serializable {
* 等级3阈值 * 等级3阈值
*/ */
private Integer level3; private Integer level3;
/**
* 自动匹配开启1不匹配0
*/
private String autoMatching;
/**
* 育龄妇女年龄范围英文逗号隔开的数字例如18,49
*/
private String ylfnValue;
} }

8
epmet-module/oper-customize/oper-customize-server/src/main/java/com/epmet/entity/IcResiCategoryStatsConfigEntity.java

@ -80,4 +80,12 @@ public class IcResiCategoryStatsConfigEntity extends BaseEpmetEntity {
*/ */
private Integer sort; private Integer sort;
/**
* 自动匹配开启1不匹配0
*/
private String autoMatching;
/**
* 育龄妇女年龄范围英文逗号隔开的数字例如18,49
*/
private String ylfnValue;
} }

5
epmet-module/oper-customize/oper-customize-server/src/main/resources/mapper/IcResiCategoryStatsConfigDao.xml

@ -26,6 +26,7 @@
select select
a.ID as id, a.ID as id,
a.LABEL as label, a.LABEL as label,
a.COLUMN_NAME as columnName,
a.MANAGEMENT_ICON as managementIcon, a.MANAGEMENT_ICON as managementIcon,
a.DATA_ICON as dataIcon, a.DATA_ICON as dataIcon,
a.HOUSE_SHOW_ICON as houseShowIcon, a.HOUSE_SHOW_ICON as houseShowIcon,
@ -34,7 +35,9 @@
b.LEVEL_1 as level1, b.LEVEL_1 as level1,
b.LEVEL_2 as level2, b.LEVEL_2 as level2,
b.LEVEL_3 as level3, b.LEVEL_3 as level3,
b.WARN b.WARN,
a.AUTO_MATCHING as ,
a.YLFN_VALUE as
from from
ic_resi_category_stats_config a ic_resi_category_stats_config a
left join ic_resi_category_warn_config b on a.TABLE_NAME = b.TABLE_NAME and a.COLUMN_NAME = b.COLUMN_NAME and b.DEL_FLAG =0 and b.CUSTOMER_ID = #{customerId} left join ic_resi_category_warn_config b on a.TABLE_NAME = b.TABLE_NAME and a.COLUMN_NAME = b.COLUMN_NAME and b.DEL_FLAG =0 and b.CUSTOMER_ID = #{customerId}

Loading…
Cancel
Save