REQ-2299 【修复】 校验&规则范围修复

This commit is contained in:
yangheng 2024-04-26 15:57:55 +08:00
parent 5ad5795197
commit f82f13f944

View File

@ -12,16 +12,15 @@ import lombok.experimental.Accessors;
@AllArgsConstructor
@NoArgsConstructor
@Accessors(chain = true)
@EqualsAndHashCode(onlyExplicitlyIncluded = true)
public class AttributeBO {
/**
* 数据对象属性id
*/
private Long dataObjectAttrId;
private Integer sort; // 序号
@EqualsAndHashCode.Include
private String attrName; //字段名
@EqualsAndHashCode.Include
private String attrCode; // 字段code
private Integer unmaskSupport; // 是否支持脱敏 1-不支持 2-支持
private Integer editSupport; // 是否支持编辑 1-不支持 2-支持