|
|
|
@ -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;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|