!109 feat(fixcontact): 定点联系单实体敏感字段添加 @AutoLogIgnore 脱敏
Merge pull request !109 from wsm/feature/entity_add_logignore
This commit is contained in:
+6
@@ -15,6 +15,7 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import org.jeecg.common.aspect.annotation.AutoLogIgnore;
|
||||
import org.jeecg.common.aspect.annotation.Dict;
|
||||
import org.jeecg.modules.bg.xispeak.entity.DeptApproveDetailMap;
|
||||
|
||||
@@ -62,6 +63,7 @@ public class FixedContact20260730 implements Serializable {
|
||||
@Excel(name = "定点联系所领导", width = 15)
|
||||
@ExcelColumn(name = "定点联系所领导", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
@AutoLogIgnore
|
||||
@Schema(description = "定点联系所领导")
|
||||
private java.lang.String contactLeader;
|
||||
|
||||
@@ -101,12 +103,14 @@ public class FixedContact20260730 implements Serializable {
|
||||
@Excel(name = "相关分管所领导", width = 15)
|
||||
@ExcelColumn(name = "相关分管所领导", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
@AutoLogIgnore
|
||||
@Schema(description = "相关分管所领导")
|
||||
private java.lang.String relatedLeader;
|
||||
|
||||
@Excel(name = "申请人", width = 15)
|
||||
@ExcelColumn(name = "申请人", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
||||
@AutoLogIgnore
|
||||
@Schema(description = "申请人")
|
||||
private java.lang.String applicant;
|
||||
|
||||
@@ -133,9 +137,11 @@ public class FixedContact20260730 implements Serializable {
|
||||
@Schema(description = "是否所办领导审批:0=否,1=是")
|
||||
private java.lang.String isNeedAppro;
|
||||
|
||||
@AutoLogIgnore
|
||||
@Schema(description = "所办领导ID,多个逗号分隔")
|
||||
private java.lang.String supDeptleaderid;
|
||||
|
||||
@AutoLogIgnore
|
||||
@TableField(typeHandler = JacksonTypeHandler.class)
|
||||
@Schema(description = "部门审批信息Map(按部门ID存是否办结与部门经办人)")
|
||||
private DeptApproveDetailMap approveInfo;
|
||||
|
||||
+3
@@ -8,6 +8,7 @@ import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
import org.jeecg.common.aspect.annotation.AutoLogIgnore;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
@@ -70,12 +71,14 @@ public class FixedContactFeedback20260730 implements Serializable {
|
||||
@Schema(description = "实际完成情况")
|
||||
private java.lang.String actualFinishStatus;
|
||||
|
||||
@AutoLogIgnore
|
||||
@Schema(description = "反馈人")
|
||||
private java.lang.String feedbackUser;
|
||||
|
||||
@Schema(description = "反馈部门")
|
||||
private java.lang.String feedbackDept;
|
||||
|
||||
@AutoLogIgnore
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "反馈人姓名")
|
||||
private java.lang.String feedbackUserName;
|
||||
|
||||
Reference in New Issue
Block a user