This commit is contained in:
dongpx
2026-02-08 22:20:56 +08:00
parent 918ec6c498
commit b629c574f1
48 changed files with 21103 additions and 705 deletions

View File

@@ -83,8 +83,21 @@ public class ReportFieldEntity extends BaseTenantEntity {
*/
private String isAmount;
// @Schema(description = "是否支持维度N=不支持 Y=支持")
private String isDimension ;
//"是否支持维度N=不支持 Y=支持"
private String isDimension;
//是否包含子字段, 值 "Y"|"N"
private String hasChildren;
// 父字段编码
private String parentFieldCode;
//父字段名称
private String parentFieldName;
}

View File

@@ -50,5 +50,14 @@ public class ReportFieldVo extends ReportFieldIdVo {
@Schema(description = "是否支持维度N=不支持 Y=支持")
private String isDimension ;
//是否包含子字段, 值 "Y"|"N"
private String hasChildren;
// 父字段编码
private String parentFieldCode;
//父字段名称
private String parentFieldName;
}

View File

@@ -378,6 +378,9 @@ public class ReportServiceImpl extends ServiceImpl<ReportMapper, ReportEntity> i
entity.setIsExport(vo.getIsExport());
entity.setIsShowSort(vo.getIsShowSort());
entity.setIsDimension(vo.getIsDimension());
entity.setHasChildren(vo.getHasChildren());
entity.setParentFieldCode(vo.getParentFieldCode());
entity.setParentFieldName(vo.getParentFieldName());
entity.setIsAmount(vo.getIsAmount());
entity.setLabelI18n(vo.getLabelI18n());
if (FuncBase.isEmpty(vo.getId())) {//新增