dpx20260211 #22

Merged
admin merged 4 commits from dpx20260211 into master 2026-02-25 14:01:31 +08:00
4 changed files with 12 additions and 1 deletions
Showing only changes of commit 7fb9543604 - Show all commits

View File

@@ -19,4 +19,8 @@ is_dynamic_group varchar 60 是否动
表名yunji_report_field
字段 类型 长度 字段说明
is_hide_dimension varchar 255
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
日期2026-02-13新增字段
表名yunji_report_field
字段 类型 长度 字段说明
width int 60 单元格宽度

View File

@@ -110,5 +110,8 @@ public class ReportFieldEntity extends BaseTenantEntity {
//是否动态分组 Y|N
private String isDynamicGroup;
//单元格宽度
private String width;
}

View File

@@ -75,5 +75,8 @@ public class ReportFieldVo extends ReportFieldIdVo {
//是否动态分组 Y|N
private String isDynamicGroup;
//单元格宽度
private String width;
}

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.setWidth(vo.getWidth());
entity.setIsDynamicGroup(vo.getIsDynamicGroup());
entity.setHasChildren(vo.getHasChildren());
entity.setParentFieldCode(vo.getParentFieldCode());