Merge pull request '新增字段' (#23) from dpx20260211 into master
Reviewed-on: #23
This commit was merged in pull request #23.
This commit is contained in:
@@ -28,4 +28,9 @@ width varchar 60 单元格
|
|||||||
日期:2026-02-24(新增字段)
|
日期:2026-02-24(新增字段)
|
||||||
表名:yunji_report_field
|
表名:yunji_report_field
|
||||||
字段 类型 长度 字段说明
|
字段 类型 长度 字段说明
|
||||||
searchDefaultValue varchar 150 查询控件默认值
|
search_default_value varchar 150 查询控件默认值
|
||||||
|
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
日期:2026-02-27(新增字段)
|
||||||
|
表名:yunji_report_field
|
||||||
|
字段 类型 长度 字段说明
|
||||||
|
is_hide_search varchar 60 查询控件是否隐藏
|
||||||
@@ -116,5 +116,8 @@ public class ReportFieldEntity extends BaseTenantEntity {
|
|||||||
//查询控件默认值
|
//查询控件默认值
|
||||||
private String searchDefaultValue;
|
private String searchDefaultValue;
|
||||||
|
|
||||||
|
//查询控件隐藏
|
||||||
|
private String isHideSearch;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -81,5 +81,8 @@ public class ReportFieldVo extends ReportFieldIdVo {
|
|||||||
//查询控件默认值
|
//查询控件默认值
|
||||||
private String searchDefaultValue;
|
private String searchDefaultValue;
|
||||||
|
|
||||||
|
//查询控件隐藏
|
||||||
|
private String isHideSearch;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -383,6 +383,7 @@ public class ReportServiceImpl extends ServiceImpl<ReportMapper, ReportEntity> i
|
|||||||
entity.setFixedColumnValue(vo.getFixedColumnValue()); //2026-02-10 新增
|
entity.setFixedColumnValue(vo.getFixedColumnValue()); //2026-02-10 新增
|
||||||
entity.setIsHideCol(vo.getIsHideCol()); //2026.2.10 新增
|
entity.setIsHideCol(vo.getIsHideCol()); //2026.2.10 新增
|
||||||
entity.setSearchDefaultValue(vo.getSearchDefaultValue());
|
entity.setSearchDefaultValue(vo.getSearchDefaultValue());
|
||||||
|
entity.setIsHideSearch(vo.getIsHideSearch());
|
||||||
entity.setWidth(vo.getWidth());
|
entity.setWidth(vo.getWidth());
|
||||||
entity.setIsDynamicGroup(vo.getIsDynamicGroup());
|
entity.setIsDynamicGroup(vo.getIsDynamicGroup());
|
||||||
entity.setHasChildren(vo.getHasChildren());
|
entity.setHasChildren(vo.getHasChildren());
|
||||||
|
|||||||
Reference in New Issue
Block a user