Browse Source

获取要计算的指标明细权重

dev_shibei_match
jianjun 5 years ago
parent
commit
c9fa62cc8b
  1. 9
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/entity/screen/IndexCodeFieldReEntity.java
  2. 2
      epmet-module/data-statistical/data-statistical-server/src/main/resources/mapper/screen/IndexGroupDetailDao.xml

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

@ -9,4 +9,13 @@ import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper=false)
@TableName("index_code_field_re")
public class IndexCodeFieldReEntity extends BaseEpmetEntity {
/**
* 指标code
*/
private String indexCode;
/**
* 字段名
*/
private String fieldId;
}

2
epmet-module/data-statistical/data-statistical-server/src/main/resources/mapper/screen/IndexGroupDetailDao.xml

@ -5,7 +5,7 @@
<select id="getDetailListByParentCode" resultType="com.epmet.entity.screen.IndexGroupDetailEntity">
select ID, INDEX_GROUP_ID, INDEX_ID, WEIGHT, THRESHOLD FROM index_group_detail_template
select ID, INDEX_GROUP_ID, INDEX_ID, INDEX_CODE, WEIGHT, THRESHOLD FROM index_group_detail_template
where STATUS = 'enable' and DEL_FLAG = '0'
</select>
</mapper>
Loading…
Cancel
Save