|
|
@ -72,18 +72,34 @@ public class BfElement extends BaseBean {
|
|
|
|
@ApiParam(value = "是否新增")
|
|
|
|
@ApiParam(value = "是否新增")
|
|
|
|
private Integer isObjectAdd;
|
|
|
|
private Integer isObjectAdd;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isObjectAdd(){
|
|
|
|
|
|
|
|
return isObjectAdd != null && isObjectAdd == BlockFormEnumUtil.ELEMENT_ADD_STATUS.ON.getValue();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_OBJECT_EDIT")
|
|
|
|
@Column(name = "IS_OBJECT_EDIT")
|
|
|
|
@ApiParam(value = "是否编辑")
|
|
|
|
@ApiParam(value = "是否编辑")
|
|
|
|
private Integer isObjectEdit;
|
|
|
|
private Integer isObjectEdit;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isObjectEdit(){
|
|
|
|
|
|
|
|
return isObjectEdit != null && isObjectEdit == BlockFormEnumUtil.ELEMENT_EDIT_STATUS.ON.getValue();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_OBJECT_DEL")
|
|
|
|
@Column(name = "IS_OBJECT_DEL")
|
|
|
|
@ApiParam(value = "是否删除")
|
|
|
|
@ApiParam(value = "是否删除")
|
|
|
|
private Integer isObjectDel;
|
|
|
|
private Integer isObjectDel;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isObjectDel(){
|
|
|
|
|
|
|
|
return isObjectDel != null && isObjectDel == BlockFormEnumUtil.ELEMENT_DEL_STATUS.ON.getValue();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_OBJECT_DEL_WEAK")
|
|
|
|
@Column(name = "IS_OBJECT_DEL_WEAK")
|
|
|
|
@ApiParam(value = "是否弱删除")
|
|
|
|
@ApiParam(value = "是否弱删除")
|
|
|
|
private Integer isObjectDelWeak;
|
|
|
|
private Integer isObjectDelWeak;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isObjectDelWeak(){
|
|
|
|
|
|
|
|
return isObjectDelWeak != null && isObjectDelWeak == BlockFormEnumUtil.ELEMENT_DELETE_WEAK_STATUS.ON.getValue();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getIsObjectDelWeakVal(){
|
|
|
|
public Integer getIsObjectDelWeakVal(){
|
|
|
|
return isObjectDelWeak == null ? BlockFormEnumUtil.ELEMENT_DELETE_WEAK_STATUS.OFF.getValue() : isObjectDelWeak.intValue();
|
|
|
|
return isObjectDelWeak == null ? BlockFormEnumUtil.ELEMENT_DELETE_WEAK_STATUS.OFF.getValue() : isObjectDelWeak.intValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -100,6 +116,10 @@ public class BfElement extends BaseBean {
|
|
|
|
return isObjectValid == null ? BlockFormEnumUtil.ELEMENT_VALID_STATUS.OFF.getValue() : isObjectValid.intValue();
|
|
|
|
return isObjectValid == null ? BlockFormEnumUtil.ELEMENT_VALID_STATUS.OFF.getValue() : isObjectValid.intValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isObjectValid(){
|
|
|
|
|
|
|
|
return isObjectValid != null && isObjectValid == BlockFormEnumUtil.ELEMENT_VALID_STATUS.ON.getValue();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "ELEMENT_VALID_ATTR_ID")
|
|
|
|
@Column(name = "ELEMENT_VALID_ATTR_ID")
|
|
|
|
@ApiParam(value = "元素有效属性id")
|
|
|
|
@ApiParam(value = "元素有效属性id")
|
|
|
|
private Long elementValidAttrId;
|
|
|
|
private Long elementValidAttrId;
|
|
|
@ -112,6 +132,10 @@ public class BfElement extends BaseBean {
|
|
|
|
return isOrganizeIsolation == null ? BlockFormEnumUtil.ELEMENT_ORGANIZE_ISOLATION_STATUS.OFF.getValue() : isOrganizeIsolation.intValue();
|
|
|
|
return isOrganizeIsolation == null ? BlockFormEnumUtil.ELEMENT_ORGANIZE_ISOLATION_STATUS.OFF.getValue() : isOrganizeIsolation.intValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isOrganizeIsolation(){
|
|
|
|
|
|
|
|
return isOrganizeIsolation != null && isOrganizeIsolation == BlockFormEnumUtil.ELEMENT_ORGANIZE_ISOLATION_STATUS.ON.getValue();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_OBJECT_EXPORT")
|
|
|
|
@Column(name = "IS_OBJECT_EXPORT")
|
|
|
|
@ApiParam(value = "是否导出")
|
|
|
|
@ApiParam(value = "是否导出")
|
|
|
|
private Integer isObjectExport;
|
|
|
|
private Integer isObjectExport;
|
|
|
|