|
|
|
@ -45,6 +45,16 @@ public class BfElement extends BaseBean {
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long dataObjectId;
|
|
|
|
|
|
|
|
|
|
//外键关联数据对象主键
|
|
|
|
|
@Column(name = "ELEMENT_PROPERTY_PRIMARY_KEY")
|
|
|
|
|
@ApiParam(value = "元素主键Key ", example = "-1")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long elementPropertyPrimaryKey;
|
|
|
|
|
|
|
|
|
|
@Column(name="ELEMENT_PROPERTY_PRIMARY_KEY_NAME_RDD")
|
|
|
|
|
@ApiParam(value ="元素主键Key名称")
|
|
|
|
|
private String elementPropertyPrimaryKeyNameRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name="ELEMENT_TYPE")
|
|
|
|
|
@ApiParam(value ="元素类型")
|
|
|
|
|
private Integer elementType;
|
|
|
|
@ -57,14 +67,30 @@ public class BfElement extends BaseBean {
|
|
|
|
|
@ApiParam(value ="元素编码")
|
|
|
|
|
private String elementCode;
|
|
|
|
|
|
|
|
|
|
@Column(name="ELEMENT_ATTR_ID")
|
|
|
|
|
@Column(name = "IS_OBJECT_ADD")
|
|
|
|
|
@ApiParam(value = "是否新增")
|
|
|
|
|
private Integer isObjectAdd;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_OBJECT_EDIT")
|
|
|
|
|
@ApiParam(value = "是否编辑")
|
|
|
|
|
private Integer isObjectEdit;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_OBJECT_DEL")
|
|
|
|
|
@ApiParam(value = "是否删除")
|
|
|
|
|
private Integer isObjectDel;
|
|
|
|
|
|
|
|
|
|
@Column(name="ELEMENT_SORT_ATTR_ID")
|
|
|
|
|
@ApiParam(value ="默认排序属性")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long elementAttrId;
|
|
|
|
|
private Long elementSortAttrId;
|
|
|
|
|
|
|
|
|
|
@Column(name="ELEMENT_SORT_ATTR_CODE_RDD")
|
|
|
|
|
@ApiParam(value ="默认排序属性名称")
|
|
|
|
|
private String elementSortAttrCodeRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name="ELEMENT_SORT_TYPE")
|
|
|
|
|
@Column(name="ELEMENT_SORT_ATTR_TYPE")
|
|
|
|
|
@ApiParam(value ="默认排序规则")
|
|
|
|
|
private Integer elementSortType;
|
|
|
|
|
private Integer elementSortAttrType;
|
|
|
|
|
|
|
|
|
|
@Column(name="ELEMENT_CSS_STYLE")
|
|
|
|
|
@ApiParam(value ="元素样式")
|
|
|
|
|