元素增删改查 DAO层接口完成

yun-zuoyi
wei.peng 6 years ago
parent 5b0d4f8d37
commit 74e89fa54e

@ -15,6 +15,7 @@ import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
import java.util.List;
/**
* @Description :
@ -74,16 +75,21 @@ public class BfElement extends BaseBean {
@Transient
@ApiParam(value = "数据对象")
@AnnoOutputColumn(hidden = true)
private BfDataObject dataObject;
@Transient
@ApiParam(value = "元素表单")
@AnnoOutputColumn(hidden = true)
private BfElementGrid elementGrid;
@Transient
@ApiParam(value = "元素树")
@AnnoOutputColumn(hidden = true)
private BfElementTree elementTree;
@Transient
@ApiParam(value = "元素属性信息")
private List<BfElementProperty> propertyList;
@Transient
@ApiParam(value = "元素虚拟属性信息")
private List<BfElementPropertyVirtual> propertyVirtualList;
}

@ -40,6 +40,10 @@ public class BfElementGrid extends BaseBean {
@ApiParam(value = "显示行号")
private Integer isLineShowNumber;
@Column(name = "IS_LINE_MULTIPLE")
@ApiParam(value = "是否单选")
private Integer isLineMultiple;
@Column(name = "IS_OBJECT_ADD")
@ApiParam(value = "是否新增")
private Integer isObjectAdd;

@ -56,11 +56,11 @@ public class BfElementProperty extends BaseBean {
private String propertyTypeNameRdd;
@Column(name="PROPERTY_NAME")
@ApiParam(value ="元素描述")
@ApiParam(value ="元素提示")
private String propertyName;
@Column(name="PROPERTY_DEFAULT_VALUE")
@ApiParam(value ="元素描述")
@ApiParam(value ="元素默认值")
private String propertyDefaultValue;
@Column(name = "PROPERTY_VALUE_NOT_NULL")

Loading…
Cancel
Save