Changes
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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())) {//新增
|
||||
|
||||
Reference in New Issue
Block a user