自定义表单拦截器开发1.1完成

优化动态表单页面接口
yun-zuoyi
wei.peng 6 years ago
parent 97d1f1332c
commit 0aaa8112a8

@ -105,6 +105,10 @@ public class BfElement extends BaseBean {
private BfDataObject dataObject;
@Transient
@ApiParam(value = "数据对象")
private BfElementProperty elementSortProperty;
@Transient
@ApiParam(value = "元素表单")
private BfElementGrid elementGrid;

@ -1,5 +1,6 @@
package cn.estsh.i3plus.pojo.model.form;
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
import cn.estsh.i3plus.pojo.form.bean.*;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
@ -7,6 +8,7 @@ import io.swagger.annotations.ApiParam;
import lombok.Data;
import javax.persistence.Column;
import javax.persistence.Transient;
import java.util.List;
/**
@ -36,6 +38,9 @@ public class ElementModel{
@ApiParam(value = "元素基础属性信息")
private List<BfElementProperty> propertyList;
@ApiParam(value = "元素查询排序")
private BfElementProperty propertySort;
@ApiParam(value = "元素基础虚拟属性信息")
private List<BfElementPropertyVirtual> virtualList;
@ -51,4 +56,11 @@ public class ElementModel{
@ApiParam(value = "元素类型")
private Integer elementType;
@ApiParam(value = "排序属性")
public String orderByParam;
//CommonEnumUtil.ASC_OR_DESC 1 asc,2 desc
@ApiParam(value = "排序类型1 正序2 倒序",example = "1")
public Integer ascOrDesc = 1;
}

@ -59,7 +59,7 @@ public class BrRefReportTypeset extends BaseBean {
/**
* html
*/
@Column(name = "REF_HTML")
@Column(name = "REF_HTML",columnDefinition = "TEXT")
@ApiParam(value = "关联对象html")
private String refHtml;

@ -55,7 +55,7 @@ public class BrReport extends BaseBean {
@ApiParam(value ="布局名称")
private String layoutNameRdd;
@Column(name="LAYOUT_HTML")
@Column(name="LAYOUT_HTML",columnDefinition = "TEXT")
@ApiParam(value ="报表html")
private String reportHtml;

Loading…
Cancel
Save