|
|
|
@ -3,6 +3,7 @@ package cn.estsh.i3plus.pojo.form.bean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.BlockFormEnumUtil;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
@ -87,6 +88,10 @@ public class BfElementProperty extends BaseBean {
|
|
|
|
|
@ApiParam(value = "是否必填")
|
|
|
|
|
private Integer propertyValueNotNull;
|
|
|
|
|
|
|
|
|
|
public boolean isPropValNotNull() {
|
|
|
|
|
return propertyValueNotNull == null || propertyValueNotNull == CommonEnumUtil.TRUE_OR_FALSE.TRUE.getValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "PROPERTY_IS_FIND")
|
|
|
|
|
@ApiParam(value = "是否查询条件")
|
|
|
|
|
private Integer propertyIsFind;
|
|
|
|
@ -123,6 +128,14 @@ public class BfElementProperty extends BaseBean {
|
|
|
|
|
@ApiParam(value = "显示顺序")
|
|
|
|
|
private Integer propertySort;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_SUPPORT_IMPORT")
|
|
|
|
|
@ApiParam(value = "是否支持导入")
|
|
|
|
|
private Integer isSupportImport;
|
|
|
|
|
|
|
|
|
|
public boolean isSupportImport() {
|
|
|
|
|
return isSupportImport != null && isSupportImport == CommonEnumUtil.TRUE_OR_FALSE.TRUE.getValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "PROPERTY_CONTROL_TYPE")
|
|
|
|
|
@ApiParam(value = "控件类型")
|
|
|
|
|
private Integer propertyControlType;
|
|
|
|
|