新增字段

This commit is contained in:
dongpx
2026-02-14 00:38:17 +08:00
parent bac75778ad
commit 7fb9543604
4 changed files with 12 additions and 1 deletions

View File

@@ -20,3 +20,7 @@ is_dynamic_group varchar 60 是否动
字段 类型 长度 字段说明
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());