|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.form.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.BlockFormEnumUtil;
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
@ -82,6 +83,10 @@ public class BfElement extends BaseBean {
|
|
|
|
|
@ApiParam(value = "是否弱删除")
|
|
|
|
|
private Integer isObjectDelWeak;
|
|
|
|
|
|
|
|
|
|
public Integer getIsObjectDelWeakVal(){
|
|
|
|
|
return isObjectDelWeak == null ? BlockFormEnumUtil.ELEMENT_DELETE_WEAK_STATUS.OFF.getValue() : isObjectDelWeak.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "ELEMENT_DEL_WEAK_ATTR_ID")
|
|
|
|
|
@ApiParam(value = "元素弱删除属性id")
|
|
|
|
|
private Long elementDelWeakAttrId;
|
|
|
|
@ -90,10 +95,22 @@ public class BfElement extends BaseBean {
|
|
|
|
|
@ApiParam(value = "是否有效")
|
|
|
|
|
private Integer isObjectValid;
|
|
|
|
|
|
|
|
|
|
public Integer getIsObjectValidVal(){
|
|
|
|
|
return isObjectValid == null ? BlockFormEnumUtil.ELEMENT_VALID_STATUS.OFF.getValue() : isObjectValid.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "ELEMENT_VALID_ATTR_ID")
|
|
|
|
|
@ApiParam(value = "元素有效属性id")
|
|
|
|
|
private Long elementValidAttrId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_ORGANIZE_ISOLATION")
|
|
|
|
|
@ApiParam(value = "是否组织隔离")
|
|
|
|
|
private Integer isOrganizeIsolation;
|
|
|
|
|
|
|
|
|
|
public Integer getIsOrganizeIsolationVal(){
|
|
|
|
|
return isOrganizeIsolation == null ? BlockFormEnumUtil.ELEMENT_ORGANIZE_ISOLATION_STATUS.OFF.getValue() : isOrganizeIsolation.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_OBJECT_EXPORT")
|
|
|
|
|
@ApiParam(value = "是否导出")
|
|
|
|
|
private Integer isObjectExport;
|
|
|
|
|