新增维度隐藏字段
This commit is contained in:
@@ -3,6 +3,7 @@ package com.lideeyunji.core.framework.entity;
|
|||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
import com.lideeyunji.tool.framework.yunji.model.global.BaseTenantEntity;
|
import com.lideeyunji.tool.framework.yunji.model.global.BaseTenantEntity;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
@@ -97,5 +98,8 @@ public class ReportFieldEntity extends BaseTenantEntity {
|
|||||||
//是否隐藏维度
|
//是否隐藏维度
|
||||||
private String isHideDimension;
|
private String isHideDimension;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
package com.lideeyunji.core.framework.params.vo;
|
package com.lideeyunji.core.framework.params.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
package com.lideeyunji.core.framework.service.impl;
|
package com.lideeyunji.core.framework.service.impl;
|
||||||
|
|
||||||
import cn.hutool.core.bean.BeanUtil;
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
@@ -376,7 +377,6 @@ public class ReportServiceImpl extends ServiceImpl<ReportMapper, ReportEntity> i
|
|||||||
entity.setDictCode(vo.getDictCode());
|
entity.setDictCode(vo.getDictCode());
|
||||||
entity.setIsExport(vo.getIsExport());
|
entity.setIsExport(vo.getIsExport());
|
||||||
entity.setIsShowSort(vo.getIsShowSort());
|
entity.setIsShowSort(vo.getIsShowSort());
|
||||||
entity.setIsShowSort(vo.getIsDimension());
|
|
||||||
entity.setIsDimension(vo.getIsDimension());
|
entity.setIsDimension(vo.getIsDimension());
|
||||||
entity.setIsHideDimension(vo.getIsHideDimension());
|
entity.setIsHideDimension(vo.getIsHideDimension());
|
||||||
entity.setHasChildren(vo.getHasChildren());
|
entity.setHasChildren(vo.getHasChildren());
|
||||||
|
|||||||
Reference in New Issue
Block a user