|
|
|
@ -44,7 +44,7 @@ public class BrTemplate extends BaseBean {
|
|
|
|
|
private Integer templateStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name="NUM_POJO")
|
|
|
|
|
@ApiParam(value ="对象数量" , example ="0" , access ="权限模块数量")
|
|
|
|
|
@ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
|
|
|
|
private Integer numPojo;
|
|
|
|
|
|
|
|
|
|
@Column(name="TEMPLATE_POJO_NAMES_RDD",columnDefinition = "TEXT")
|
|
|
|
@ -52,7 +52,7 @@ public class BrTemplate extends BaseBean {
|
|
|
|
|
private String templatePojoNamesRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name="NUM_SERVER")
|
|
|
|
|
@ApiParam(value ="对象数量" , example ="0" , access ="权限模块数量")
|
|
|
|
|
@ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
|
|
|
|
private Integer numServer;
|
|
|
|
|
|
|
|
|
|
@Column(name="TEMPLATE_SERVER_ID_LIST",columnDefinition = "TEXT")
|
|
|
|
@ -64,7 +64,7 @@ public class BrTemplate extends BaseBean {
|
|
|
|
|
private String templateServerNamesRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name="NUM_TEMPLATE_ATTR_FILTER")
|
|
|
|
|
@ApiParam(value ="对象数量" , example ="0" , access ="权限模块数量")
|
|
|
|
|
@ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
|
|
|
|
private Integer numTemplateAttrFilter;
|
|
|
|
|
|
|
|
|
|
@Column(name="template_attr_filter_list",columnDefinition = "TEXT")
|
|
|
|
@ -72,7 +72,7 @@ public class BrTemplate extends BaseBean {
|
|
|
|
|
private String templateAttrFilterList;
|
|
|
|
|
|
|
|
|
|
@Column(name="NUM_TEMPLATE_ATTR_FILTER_GROUP")
|
|
|
|
|
@ApiParam(value ="对象数量" , example ="0" , access ="权限模块数量")
|
|
|
|
|
@ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
|
|
|
|
private Integer numTemplateAttrFilterGroup;
|
|
|
|
|
|
|
|
|
|
@Column(name="TEMPLATE_ATTR_FILTER_GROUP_LIST",columnDefinition = "TEXT")
|
|
|
|
@ -80,13 +80,21 @@ public class BrTemplate extends BaseBean {
|
|
|
|
|
private String templateAttrFilterGroupList;
|
|
|
|
|
|
|
|
|
|
@Column(name="NUM_TEMPLATE_ATTR_SHOW")
|
|
|
|
|
@ApiParam(value ="对象数量" , example ="0" , access ="权限模块数量")
|
|
|
|
|
@ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
|
|
|
|
private Integer numTemplateAttrShow;
|
|
|
|
|
|
|
|
|
|
@Column(name="TEMPLATE_ATTR_SHOW_LIST",columnDefinition = "TEXT")
|
|
|
|
|
@ApiParam(value ="模板显示属性" , access ="模板显示属性")
|
|
|
|
|
private String templateAttrShowList;
|
|
|
|
|
|
|
|
|
|
@Column(name="NUM_TEMPLATE_AGGREGATION_SHOW")
|
|
|
|
|
@ApiParam(value ="对象聚集数量" , example ="0" , access ="对象聚集数量")
|
|
|
|
|
private Integer numTemplateAggregationShow;
|
|
|
|
|
|
|
|
|
|
@Column(name="TEMPLATE_ATTR_AGGREGATION_LIST",columnDefinition = "TEXT")
|
|
|
|
|
@ApiParam(value ="模板聚集属性" , access ="模板聚集属性")
|
|
|
|
|
private String templateAttrAggregationList;
|
|
|
|
|
|
|
|
|
|
@Column(name="TEMPLATE_DESCRIPTION")
|
|
|
|
|
@ApiParam(value ="模板描述" , access ="模板描述")
|
|
|
|
|
private String templateDescription;
|
|
|
|
@ -130,10 +138,14 @@ public class BrTemplate extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value ="模板服务对象聚合条件")
|
|
|
|
|
private List<BrPojoAttr> pojoAttrAggrList = new ArrayList<>();
|
|
|
|
|
private List<BrPojoAttr> pojoAttrAggregationList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value ="模板服务对象显示属性")
|
|
|
|
|
private List<BrPojoAttr> pojoAttrShowList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value ="模板服务集合")
|
|
|
|
|
private List<String> serverNameList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|