新增字段

This commit is contained in:
dongpx
2026-02-25 10:06:15 +08:00
parent 7fb9543604
commit 1173de364c
5 changed files with 15 additions and 2 deletions

View File

@@ -113,5 +113,8 @@ public class ReportFieldEntity extends BaseTenantEntity {
//单元格宽度
private String width;
//查询控件默认值
private String searchDefaultValue;
}

View File

@@ -78,5 +78,8 @@ public class ReportFieldVo extends ReportFieldIdVo {
//单元格宽度
private String width;
//查询控件默认值
private String searchDefaultValue;
}

View File

@@ -382,6 +382,7 @@ public class ReportServiceImpl extends ServiceImpl<ReportMapper, ReportEntity> i
entity.setIsFixedColumn(vo.getIsFixedColumn()); //2026-02-10 新增
entity.setFixedColumnValue(vo.getFixedColumnValue()); //2026-02-10 新增
entity.setIsHideCol(vo.getIsHideCol()); //2026.2.10 新增
entity.setSearchDefaultValue(vo.getSearchDefaultValue());
entity.setWidth(vo.getWidth());
entity.setIsDynamicGroup(vo.getIsDynamicGroup());
entity.setHasChildren(vo.getHasChildren());

View File

@@ -70,13 +70,14 @@
WHERE
report.is_deleted = 0
AND field.is_deleted = 0
AND field.query_is_db = 'Y'
-- AND field.query_is_db = 'Y'
AND report.id = #{reportId}
ORDER BY
field.sort_num ASC,
field.id ASC
</select>
<select id="getExcelExportFieldList" resultType="map">
SELECT
df.field_code as "field_code",