参数项收集清单--表头查询
This commit is contained in:
+8
@@ -14,5 +14,13 @@
|
||||
<result column="module_flag" property="moduleFlag" />
|
||||
<result column="sort" property="sort" />
|
||||
<result column="field" property="field" />
|
||||
<result column="sort_params" property="sortParams" />
|
||||
<result column="click" property="click" />
|
||||
<result column="click1" property="click1" />
|
||||
<result column="click2" property="click2" />
|
||||
<result column="click3" property="click3" />
|
||||
<result column="click4" property="click4" />
|
||||
<result column="click5" property="click5" />
|
||||
<result column="click6" property="click6" />
|
||||
</resultMap>
|
||||
</mapper>
|
||||
|
||||
+11
@@ -334,6 +334,17 @@ public class HeadCustomEOServiceImpl extends ServiceImpl<HeadCustomEOMapper, Hea
|
||||
@NotNull
|
||||
private HeadCustomVO getHeadCustomVO(String cut, HeadCustomEO headCustomEO, HeadCustomVO headCustomVO) {
|
||||
headCustomVO.setDataIndex(headCustomEO.getField());
|
||||
headCustomVO.setDb_field_name(headCustomEO.getHeadFieldEn());
|
||||
headCustomVO.setDb_field_txt(headCustomEO.getHeadFieldCn());
|
||||
headCustomVO.setSortParams(headCustomEO.getSortParams());
|
||||
headCustomVO.setSort(headCustomEO.getSort());
|
||||
headCustomVO.setClick(headCustomEO.getClick());
|
||||
headCustomVO.setClick1(headCustomEO.getClick1());
|
||||
headCustomVO.setClick2(headCustomEO.getClick2());
|
||||
headCustomVO.setClick3(headCustomEO.getClick3());
|
||||
headCustomVO.setClick4(headCustomEO.getClick4());
|
||||
headCustomVO.setClick5(headCustomEO.getClick5());
|
||||
headCustomVO.setClick6(headCustomEO.getClick6());
|
||||
if (CutEnum.CN.getValue().equals(cut)) {
|
||||
headCustomVO.setTitle(headCustomEO.getHeadFieldCn());
|
||||
} else {
|
||||
|
||||
@@ -19,4 +19,27 @@ public class HeadCustomVO {
|
||||
|
||||
private List<HeadCustomVO> children;//二级表头
|
||||
|
||||
private String sortParams;
|
||||
|
||||
private String sort;
|
||||
|
||||
private String click;
|
||||
|
||||
private String click1;
|
||||
|
||||
private String click2;
|
||||
|
||||
private String click3;
|
||||
|
||||
private String click4;
|
||||
|
||||
private String click5;
|
||||
|
||||
private String click6;
|
||||
|
||||
private String db_field_name;
|
||||
|
||||
private String db_field_txt;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user