自定报表对象模型调整
parent
9b8675c904
commit
3b7b374b23
@ -1,35 +1,35 @@
|
||||
package cn.estsh.i3plus.pojo.model.report;
|
||||
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrPojoAttr;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrTemplateCustomHql;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description ://
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-25 18:19
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class BeanBrPojoAttrModel {
|
||||
|
||||
@ApiParam(value = "表单模板ID")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long templateId;
|
||||
|
||||
@ApiParam(value = "数据类型")
|
||||
private Integer dataType;
|
||||
|
||||
@ApiParam(value = "对象属性")
|
||||
private List<BrPojoAttr> attrList;
|
||||
|
||||
@ApiParam(value = "自定义HQL")
|
||||
private BrTemplateCustomHql customHql;
|
||||
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.model.report;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrPojoAttr;
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrTemplateCustomHql;
|
||||
//import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
//import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
//import io.swagger.annotations.ApiParam;
|
||||
//import lombok.Data;
|
||||
//
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * @Description ://
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-25 18:19
|
||||
// * @Modify:
|
||||
// **/
|
||||
//@Data
|
||||
//public class BeanBrPojoAttrModel {
|
||||
//
|
||||
// @ApiParam(value = "表单模板ID")
|
||||
// @JsonSerialize(using = ToStringSerializer.class)
|
||||
// private Long templateId;
|
||||
//
|
||||
// @ApiParam(value = "数据类型")
|
||||
// private Integer dataType;
|
||||
//
|
||||
// @ApiParam(value = "对象属性")
|
||||
// private List<BrPojoAttr> attrList;
|
||||
//
|
||||
// @ApiParam(value = "自定义HQL")
|
||||
// private BrTemplateCustomHql customHql;
|
||||
//
|
||||
//}
|
||||
|
@ -0,0 +1,137 @@
|
||||
package cn.estsh.i3plus.pojo.report.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.BlockReportEnumUtil;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Transient;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @CreateDate : 19-12-3 下午4:01
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="BR_POJO")
|
||||
@Api(value="报表对象",description = "报表对象")
|
||||
public class BrPojo extends BaseBean {
|
||||
|
||||
@Column(name="MASTER_ID")
|
||||
@ApiParam(value ="主对象ID")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long masterId;
|
||||
|
||||
@Column(name="POJO_TYPE")
|
||||
@ApiParam(value ="对象类型")
|
||||
private Integer pojoType;
|
||||
|
||||
@Column(name="SOFT_TYPE")
|
||||
@ApiParam(value ="产品类型")
|
||||
private Integer softType;
|
||||
|
||||
public String getSoftTypeTxt(){
|
||||
return softType == null ? null : CommonEnumUtil.SOFT_TYPE.valueOfDescription(softType);
|
||||
}
|
||||
|
||||
@Column(name="SOURCE_CODE")
|
||||
@ApiParam(value ="数据源编码")
|
||||
private String sourceCode;
|
||||
|
||||
@Column(name="SOURCE_NAME")
|
||||
@ApiParam(value ="数据源名称")
|
||||
private String sourceName;
|
||||
|
||||
@Column(name="POJO_PACKAGE_CODE")
|
||||
@ApiParam(value ="对象全路径")
|
||||
private String pojoPackageCode;
|
||||
|
||||
@Column(name="POJO_CODE")
|
||||
@ApiParam(value ="对象代码")
|
||||
private String pojoCode;
|
||||
|
||||
@Column(name="POJO_CODE_ALIAS")
|
||||
@ApiParam(value ="对象别名")
|
||||
private String pojoCodeAlias;
|
||||
|
||||
@Column(name="pojo_name")
|
||||
@ApiParam(value ="对象名称")
|
||||
private String pojoName;
|
||||
|
||||
@Column(name="POJO_SORT")
|
||||
@ApiParam(value ="对象排序")
|
||||
private Integer pojoSort;
|
||||
|
||||
@Column(name="POJO_ATTR")
|
||||
@ApiParam(value ="连接属性")
|
||||
private String pojoAttr;
|
||||
|
||||
@Column(name="JOIN_TYPE")
|
||||
@ApiParam(value ="连接关系")
|
||||
private Integer joinType;
|
||||
public String getJoinTypeTxt(){
|
||||
return joinType == null ? null : BlockReportEnumUtil.HQL_REF.valueOfDescription(joinType);
|
||||
}
|
||||
|
||||
@Column(name="WHERE_TYPE")
|
||||
@ApiParam(value ="连接类型")
|
||||
private Integer whereType;
|
||||
public String getWhereTypeTxt(){
|
||||
return whereType == null ? null : BlockReportEnumUtil.HQL_WHERE.valueOfDescription(whereType);
|
||||
}
|
||||
|
||||
@Column(name="JOIN_POJO_ID")
|
||||
@ApiParam(value ="连接对象ID")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long joinPojoId;
|
||||
|
||||
@Column(name="JOIN_POJO_NAME_RDD")
|
||||
@ApiParam(value ="连接对象名称")
|
||||
private String joinPojoNameRdd;
|
||||
|
||||
@Column(name="JOIN_POJO_CODE_RDD")
|
||||
@ApiParam(value ="连接对象代码")
|
||||
private String joinPojoCodeRdd;
|
||||
|
||||
@Column(name="JOIN_POJO_CODE_ALIAS_RDD")
|
||||
@ApiParam(value ="连接对象别名")
|
||||
private String joinPojoCodeAliasRdd;
|
||||
|
||||
@Column(name="JOIN_POJO_ATTR")
|
||||
@ApiParam(value ="连接对象属性")
|
||||
private String joinPojoAttr;
|
||||
|
||||
@Column(name="POJO_HQL")
|
||||
@ApiParam(value ="对象名称")
|
||||
private String pojoHql;
|
||||
|
||||
@Column(name="POJO_DESCRIPTION")
|
||||
@ApiParam(value ="对象描述")
|
||||
private String pojoDescription;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value = "主对象Pojo 信息")
|
||||
private BrPojo masterPojo;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value = "连接对象集合")
|
||||
private List<BrPojo> joinList;
|
||||
|
||||
}
|
@ -0,0 +1,46 @@
|
||||
package cn.estsh.i3plus.pojo.report.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @CreateDate : 19-12-3 下午5:10
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="BR_POJO_FILTER")
|
||||
@Api(value="对象筛选器",description = "对象筛选器")
|
||||
public class BrPojoFilter extends BaseBean {
|
||||
|
||||
@Column(name="MASTER_ID")
|
||||
@ApiParam(value ="主对象ID")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long masterId;
|
||||
|
||||
@Column(name="FILTER_NAME")
|
||||
@ApiParam(value ="筛选器名称")
|
||||
private String filterName;
|
||||
|
||||
@Column(name="FILTER_DESCRIPTION")
|
||||
@ApiParam(value ="筛选器描述")
|
||||
private String filterDescription;
|
||||
|
||||
}
|
@ -0,0 +1,79 @@
|
||||
package cn.estsh.i3plus.pojo.report.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.BlockReportEnumUtil;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Transient;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @CreateDate : 19-12-3 下午5:10
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="BR_POJO_VIEW")
|
||||
@Api(value="对象视图",description = "对象视图")
|
||||
public class BrPojoView extends BaseBean {
|
||||
|
||||
@Column(name="POJO_ID")
|
||||
@ApiParam(value ="主对象ID")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long pojoId;
|
||||
|
||||
@Column(name="MASTER_ID")
|
||||
@ApiParam(value ="主对象ID")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long masterId;
|
||||
|
||||
@Column(name="VIEW_NAME")
|
||||
@ApiParam(value ="视图名称")
|
||||
private String viewName;
|
||||
|
||||
@Column(name="FILTER_ID")
|
||||
@ApiParam(value ="筛选器ID")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long filterId;
|
||||
|
||||
@Column(name="POJO_NAME_RDD")
|
||||
@ApiParam(value ="对象名称")
|
||||
private String pojoNameRdd;
|
||||
|
||||
@Column(name="FILTER_NAME_RDD")
|
||||
@ApiParam(value ="筛选器名称")
|
||||
private String filterNameRdd;
|
||||
|
||||
@Column(name="VIEW_TYPE")
|
||||
@ApiParam(value ="视图类型")
|
||||
private Integer viewType;
|
||||
public String getViewTypeTxt(){
|
||||
return viewType == null ? null : BlockReportEnumUtil.TEMPLATE_TYPE.valueOf(viewType);
|
||||
}
|
||||
|
||||
@Column(name="VIEW_DESCRIPTION")
|
||||
@ApiParam(value ="视图描述")
|
||||
private String viewDescription;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="显示属性集合")
|
||||
private List<BrPojoViewAttr> viewAttrList;
|
||||
|
||||
}
|
@ -0,0 +1,112 @@
|
||||
package cn.estsh.i3plus.pojo.report.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Transient;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @CreateDate : 19-12-3 下午5:10
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "BR_POJO_VIEW_ATTR")
|
||||
@Api(value = "对象视图", description = "对象视图")
|
||||
public class BrPojoViewAttr extends BaseBean {
|
||||
|
||||
@Column(name = "VIEW_ID")
|
||||
@ApiParam(value = "视图ID")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long viewId;
|
||||
|
||||
/************************************** 对象信息 **************************************/
|
||||
|
||||
@Column(name = "POJO_ID")
|
||||
@ApiParam(value = "对象ID")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long pojoId;
|
||||
|
||||
@Column(name = "POJO_NAME_RDD")
|
||||
@ApiParam(value = "对象名称")
|
||||
private String pojoNameRdd;
|
||||
|
||||
@Column(name = "POJO_CODE_RDD")
|
||||
@ApiParam(value = "对象代码")
|
||||
private String pojoCodeRdd;
|
||||
|
||||
@Column(name = "POJO_CODE_ALIAS_RDD")
|
||||
@ApiParam(value = "对象别名")
|
||||
private String pojoCodeAliasRdd;
|
||||
|
||||
@Column(name="POJO_ATTR")
|
||||
@ApiParam(value ="对象属性")
|
||||
private String pojoAttr;
|
||||
|
||||
@Column(name="PACKAGE_POJO_ATTR")
|
||||
@ApiParam(value ="对象属性全路径")
|
||||
private String packagePojoAttr;
|
||||
|
||||
@Column(name="VIEW_ATTR_ALIAS")
|
||||
@ApiParam(value ="视图属性别名")
|
||||
private String viewAttrAlias;
|
||||
|
||||
/************************************** 属性信息 **************************************/
|
||||
|
||||
@Column(name = "AGGREGATION_TYPE")
|
||||
@ApiParam(value = "聚合类型")
|
||||
private Integer aggregationType;
|
||||
|
||||
@Column(name = "VIEW_ATTR_NAME")
|
||||
@ApiParam(value = "显示名称")
|
||||
private String viewAttrName;
|
||||
|
||||
@Column(name = "VIEW_DIMENSION")
|
||||
@ApiParam(value = "视图维度")
|
||||
private String viewDimension;
|
||||
|
||||
@Column(name = "ATTR_SORT")
|
||||
@ApiParam(value = "属性显示排序")
|
||||
private Integer attrSort;
|
||||
|
||||
@Column(name="ATTR_SORT_TYPE")
|
||||
@ApiParam(value ="排序规则")
|
||||
private Integer attrSortType;
|
||||
public String getAttrSortTypeTxt(){
|
||||
return attrSortType == null ? null : CommonEnumUtil.ASC_OR_DESC.valueOf(attrSortType);
|
||||
}
|
||||
|
||||
@Column(name="ATTR_SHOW")
|
||||
@ApiParam(value ="属性是否显示")
|
||||
private Integer attrShow;
|
||||
public String getAttrShowTxt(){
|
||||
return attrShow == null ? null : CommonEnumUtil.TRUE_OR_FALSE.valueOfDescription(attrShow);
|
||||
}
|
||||
|
||||
@Column(name="ATTR_HQL")
|
||||
@ApiParam(value ="属性HQL")
|
||||
private String attrHql;
|
||||
|
||||
@Column(name = "VIEW_DESCRIPTION")
|
||||
@ApiParam(value = "视图描述")
|
||||
private String viewDescription;
|
||||
|
||||
|
||||
}
|
@ -1,77 +1,77 @@
|
||||
package cn.estsh.i3plus.pojo.report.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-18 11:32
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="BR_REF_POJO")
|
||||
@Api(value="对象关系",description = "对象关系")
|
||||
public class BrRefPojo extends BaseBean {
|
||||
|
||||
@Column(name="TEMPLATE_ID")
|
||||
@ApiParam(value ="模板编号" ,example = "-1")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long templateId;
|
||||
|
||||
@Column(name="REF_TYPE")
|
||||
@ApiParam(value ="关系类型")
|
||||
private Integer refType;
|
||||
|
||||
@Column(name="REF_SORT")
|
||||
@ApiParam(value ="关系排序")
|
||||
private Integer refSort;
|
||||
|
||||
@Column(name="MASTER_SERVER_ID")
|
||||
@ApiParam(value ="主服务编号" ,example = "-1")
|
||||
private Integer masterServerId;
|
||||
|
||||
@Column(name="MASTER_POJO_NAME")
|
||||
@ApiParam(value ="副对象名称")
|
||||
private String masterPojoName;
|
||||
|
||||
@Column(name="MASTER_POJO_NAME_ALIAS")
|
||||
@ApiParam(value ="主对象别名")
|
||||
private String masterPojoNameAlias;
|
||||
|
||||
@Column(name="MASTER_POJO_NAME_ATTR_NAME")
|
||||
@ApiParam(value ="主对象属性名称" )
|
||||
private String masterPojoAttName;
|
||||
|
||||
@Column(name="SECONDARY_SERVER_ID")
|
||||
@ApiParam(value ="主服务编号")
|
||||
private Integer secondaryServerId;
|
||||
|
||||
@Column(name="SECONDARY_POJO_NAME")
|
||||
@ApiParam(value ="副对象名称")
|
||||
private String secondaryPojoName;
|
||||
|
||||
@Column(name="SECONDARY_POJO_NAME_ALIAS")
|
||||
@ApiParam(value ="副对象别名" )
|
||||
private String secondaryPojoNameAlias;
|
||||
|
||||
@Column(name="SECONDARY_POJO_ATTR_NAME")
|
||||
@ApiParam(value ="副对象属性名称")
|
||||
private String secondaryPojoAttrName;
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.bean;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
//import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
//import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
//import io.swagger.annotations.Api;
|
||||
//import io.swagger.annotations.ApiParam;
|
||||
//import lombok.Data;
|
||||
//import lombok.EqualsAndHashCode;
|
||||
//import org.hibernate.annotations.DynamicInsert;
|
||||
//import org.hibernate.annotations.DynamicUpdate;
|
||||
//
|
||||
//import javax.persistence.Column;
|
||||
//import javax.persistence.Entity;
|
||||
//import javax.persistence.Table;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-18 11:32
|
||||
// * @Modify:
|
||||
// **/
|
||||
//@Data
|
||||
//@Entity
|
||||
//@DynamicInsert
|
||||
//@DynamicUpdate
|
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
//@Table(name="BR_REF_POJO")
|
||||
//@Api(value="对象关系",description = "对象关系")
|
||||
//public class BrRefPojo extends BaseBean {
|
||||
//
|
||||
// @Column(name="TEMPLATE_ID")
|
||||
// @ApiParam(value ="模板编号" ,example = "-1")
|
||||
// @JsonSerialize(using = ToStringSerializer.class)
|
||||
// private Long templateId;
|
||||
//
|
||||
// @Column(name="REF_TYPE")
|
||||
// @ApiParam(value ="关系类型")
|
||||
// private Integer refType;
|
||||
//
|
||||
// @Column(name="REF_SORT")
|
||||
// @ApiParam(value ="关系排序")
|
||||
// private Integer refSort;
|
||||
//
|
||||
// @Column(name="MASTER_SERVER_ID")
|
||||
// @ApiParam(value ="主服务编号" ,example = "-1")
|
||||
// private Integer masterServerId;
|
||||
//
|
||||
// @Column(name="MASTER_POJO_NAME")
|
||||
// @ApiParam(value ="副对象名称")
|
||||
// private String masterPojoName;
|
||||
//
|
||||
// @Column(name="MASTER_POJO_NAME_ALIAS")
|
||||
// @ApiParam(value ="主对象别名")
|
||||
// private String masterPojoNameAlias;
|
||||
//
|
||||
// @Column(name="MASTER_POJO_NAME_ATTR_NAME")
|
||||
// @ApiParam(value ="主对象属性名称" )
|
||||
// private String masterPojoAttName;
|
||||
//
|
||||
// @Column(name="SECONDARY_SERVER_ID")
|
||||
// @ApiParam(value ="主服务编号")
|
||||
// private Integer secondaryServerId;
|
||||
//
|
||||
// @Column(name="SECONDARY_POJO_NAME")
|
||||
// @ApiParam(value ="副对象名称")
|
||||
// private String secondaryPojoName;
|
||||
//
|
||||
// @Column(name="SECONDARY_POJO_NAME_ALIAS")
|
||||
// @ApiParam(value ="副对象别名" )
|
||||
// private String secondaryPojoNameAlias;
|
||||
//
|
||||
// @Column(name="SECONDARY_POJO_ATTR_NAME")
|
||||
// @ApiParam(value ="副对象属性名称")
|
||||
// private String secondaryPojoAttrName;
|
||||
//}
|
||||
|
@ -1,115 +1,115 @@
|
||||
package cn.estsh.i3plus.pojo.report.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Transient;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-18 11:31
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="BR_REF_SERVER_POJO")
|
||||
@Api(value="报表模板服务对象",description = "报表模板服务对象")
|
||||
public class BrRefServerPojo extends BaseBean {
|
||||
|
||||
@Column(name="TEMPLATE_ID")
|
||||
@ApiParam(value ="模板编号" ,example = "-1")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long templateId;
|
||||
|
||||
@Column(name="TEMPLATE_NAME_RDD")
|
||||
@ApiParam(value ="模板名称" , access ="模板名称")
|
||||
private String templateNameRdd;
|
||||
|
||||
@Column(name="POJO_REF_TYPE")
|
||||
@ApiParam(value ="关系类型")
|
||||
private Integer pojoRefType;
|
||||
|
||||
@Column(name="POJO_WHERE_TYPE")
|
||||
@ApiParam(value ="连接关系")
|
||||
private Integer pojoWhereType;
|
||||
|
||||
@Column(name="POJO_SORT")
|
||||
@ApiParam(value ="主服务编号" ,example = "-1")
|
||||
private Integer pojoSort;
|
||||
|
||||
@Column(name="MASTER_SERVER_ID")
|
||||
@ApiParam(value ="主服务编号" ,example = "-1")
|
||||
private Integer masterServerId;
|
||||
|
||||
@Column(name="MASTER_SERVER_NAME_RDD")
|
||||
@ApiParam(value ="主服务名称" ,example = "-1")
|
||||
private String masterServerNameRdd;
|
||||
|
||||
@Column(name="MASTER_POJO_NAME")
|
||||
@ApiParam(value ="副对象名称")
|
||||
private String masterPojoName;
|
||||
|
||||
@Column(name="MASTER_PACKAGE_NAME_RDD")
|
||||
@ApiParam(value ="主服务对象包名称" , access ="服务对象包名称")
|
||||
private String masterPackageNameRdd;
|
||||
|
||||
@Column(name="MASTER_POJO_NAME_ALIAS")
|
||||
@ApiParam(value ="主对象别名")
|
||||
private String masterPojoNameAlias;
|
||||
|
||||
@Column(name="MASTER_POJO_NAME_DESC")
|
||||
@ApiParam(value ="主对象中文名称")
|
||||
private String masterPojoNameDesc;
|
||||
|
||||
@Column(name="MASTER_POJO_NAME_ATTR_NAME")
|
||||
@ApiParam(value ="主对象属性名称" )
|
||||
private String masterPojoAttrName;
|
||||
|
||||
@Column(name="SECONDARY_SERVER_ID")
|
||||
@ApiParam(value ="主服务编号")
|
||||
private Integer secondaryServerId;
|
||||
|
||||
@Column(name="SECONDARY_SERVER_NAME")
|
||||
@ApiParam(value ="主服务编号")
|
||||
private String secondaryServerName;
|
||||
|
||||
@Column(name="SECONDARY_POJO_NAME")
|
||||
@ApiParam(value ="副对象名称")
|
||||
private String secondaryPojoName;
|
||||
|
||||
@Column(name="SECONDARY_PACKAGE_NAME")
|
||||
@ApiParam(value ="主服务对象包名称" , access ="服务对象包名称")
|
||||
private String secondaryPackageName;
|
||||
|
||||
@Column(name="SECONDARY_POJO_NAME_ALIAS")
|
||||
@ApiParam(value ="副对象别名" )
|
||||
private String secondaryPojoNameAlias;
|
||||
|
||||
@Column(name="SECONDARY_POJO_NAME_DESC")
|
||||
@ApiParam(value ="副对象中文名称")
|
||||
private String secondaryPojoNameDesc;
|
||||
|
||||
@Column(name="SECONDARY_POJO_ATTR_NAME")
|
||||
@ApiParam(value ="副对象属性名称")
|
||||
private String secondaryPojoAttrName;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务对象属性")
|
||||
private List<BrPojoAttr> pojoAttrList;
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.bean;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
//import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
//import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
//import io.swagger.annotations.Api;
|
||||
//import io.swagger.annotations.ApiParam;
|
||||
//import lombok.Data;
|
||||
//import lombok.EqualsAndHashCode;
|
||||
//import org.hibernate.annotations.DynamicInsert;
|
||||
//import org.hibernate.annotations.DynamicUpdate;
|
||||
//
|
||||
//import javax.persistence.Column;
|
||||
//import javax.persistence.Entity;
|
||||
//import javax.persistence.Table;
|
||||
//import javax.persistence.Transient;
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-18 11:31
|
||||
// * @Modify:
|
||||
// **/
|
||||
//@Data
|
||||
//@Entity
|
||||
//@DynamicInsert
|
||||
//@DynamicUpdate
|
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
//@Table(name="BR_REF_SERVER_POJO")
|
||||
//@Api(value="报表模板服务对象",description = "报表模板服务对象")
|
||||
//public class BrRefServerPojo extends BaseBean {
|
||||
//
|
||||
// @Column(name="TEMPLATE_ID")
|
||||
// @ApiParam(value ="模板编号" ,example = "-1")
|
||||
// @JsonSerialize(using = ToStringSerializer.class)
|
||||
// private Long templateId;
|
||||
//
|
||||
// @Column(name="TEMPLATE_NAME_RDD")
|
||||
// @ApiParam(value ="模板名称" , access ="模板名称")
|
||||
// private String templateNameRdd;
|
||||
//
|
||||
// @Column(name="POJO_REF_TYPE")
|
||||
// @ApiParam(value ="关系类型")
|
||||
// private Integer pojoRefType;
|
||||
//
|
||||
// @Column(name="POJO_WHERE_TYPE")
|
||||
// @ApiParam(value ="连接关系")
|
||||
// private Integer pojoWhereType;
|
||||
//
|
||||
// @Column(name="POJO_SORT")
|
||||
// @ApiParam(value ="主服务编号" ,example = "-1")
|
||||
// private Integer pojoSort;
|
||||
//
|
||||
// @Column(name="MASTER_SERVER_ID")
|
||||
// @ApiParam(value ="主服务编号" ,example = "-1")
|
||||
// private Integer masterServerId;
|
||||
//
|
||||
// @Column(name="MASTER_SERVER_NAME_RDD")
|
||||
// @ApiParam(value ="主服务名称" ,example = "-1")
|
||||
// private String masterServerNameRdd;
|
||||
//
|
||||
// @Column(name="MASTER_POJO_NAME")
|
||||
// @ApiParam(value ="副对象名称")
|
||||
// private String masterPojoName;
|
||||
//
|
||||
// @Column(name="MASTER_PACKAGE_NAME_RDD")
|
||||
// @ApiParam(value ="主服务对象包名称" , access ="服务对象包名称")
|
||||
// private String masterPackageNameRdd;
|
||||
//
|
||||
// @Column(name="MASTER_POJO_NAME_ALIAS")
|
||||
// @ApiParam(value ="主对象别名")
|
||||
// private String masterPojoNameAlias;
|
||||
//
|
||||
// @Column(name="MASTER_POJO_NAME_DESC")
|
||||
// @ApiParam(value ="主对象中文名称")
|
||||
// private String masterPojoNameDesc;
|
||||
//
|
||||
// @Column(name="MASTER_POJO_NAME_ATTR_NAME")
|
||||
// @ApiParam(value ="主对象属性名称" )
|
||||
// private String masterPojoAttrName;
|
||||
//
|
||||
// @Column(name="SECONDARY_SERVER_ID")
|
||||
// @ApiParam(value ="主服务编号")
|
||||
// private Integer secondaryServerId;
|
||||
//
|
||||
// @Column(name="SECONDARY_SERVER_NAME")
|
||||
// @ApiParam(value ="主服务编号")
|
||||
// private String secondaryServerName;
|
||||
//
|
||||
// @Column(name="SECONDARY_POJO_NAME")
|
||||
// @ApiParam(value ="副对象名称")
|
||||
// private String secondaryPojoName;
|
||||
//
|
||||
// @Column(name="SECONDARY_PACKAGE_NAME")
|
||||
// @ApiParam(value ="主服务对象包名称" , access ="服务对象包名称")
|
||||
// private String secondaryPackageName;
|
||||
//
|
||||
// @Column(name="SECONDARY_POJO_NAME_ALIAS")
|
||||
// @ApiParam(value ="副对象别名" )
|
||||
// private String secondaryPojoNameAlias;
|
||||
//
|
||||
// @Column(name="SECONDARY_POJO_NAME_DESC")
|
||||
// @ApiParam(value ="副对象中文名称")
|
||||
// private String secondaryPojoNameDesc;
|
||||
//
|
||||
// @Column(name="SECONDARY_POJO_ATTR_NAME")
|
||||
// @ApiParam(value ="副对象属性名称")
|
||||
// private String secondaryPojoAttrName;
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务对象属性")
|
||||
// private List<BrPojoAttr> pojoAttrList;
|
||||
//}
|
||||
|
@ -1,50 +1,50 @@
|
||||
package cn.estsh.i3plus.pojo.report.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-18 11:31
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="BR_REF_TEMPLATE_SERVER")
|
||||
@Api(value="报表模板-服务",description = "报表模板-服务")
|
||||
public class BrRefTemplateServer extends BaseBean {
|
||||
|
||||
@Column(name="TEMPLATE_ID")
|
||||
@ApiParam(value ="模板编号" ,example = "-1")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long templateId;
|
||||
|
||||
@Column(name="TEMPLATE_NAME_RDD")
|
||||
@ApiParam(value ="模板名称" , access ="模板名称")
|
||||
private String templateNameRdd;
|
||||
|
||||
@Column(name="SERVER_ID")
|
||||
@ApiParam(value ="服务编号" ,example = "-1")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Integer serverId;
|
||||
|
||||
@Column(name="SERVER_NAME_RDD")
|
||||
@ApiParam(value ="服务名称" , access ="模板名称")
|
||||
private String serverNameRdd;
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.bean;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
//import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
//import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
//import io.swagger.annotations.Api;
|
||||
//import io.swagger.annotations.ApiParam;
|
||||
//import lombok.Data;
|
||||
//import lombok.EqualsAndHashCode;
|
||||
//import org.hibernate.annotations.DynamicInsert;
|
||||
//import org.hibernate.annotations.DynamicUpdate;
|
||||
//
|
||||
//import javax.persistence.Column;
|
||||
//import javax.persistence.Entity;
|
||||
//import javax.persistence.Table;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-18 11:31
|
||||
// * @Modify:
|
||||
// **/
|
||||
//@Data
|
||||
//@Entity
|
||||
//@DynamicInsert
|
||||
//@DynamicUpdate
|
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
//@Table(name="BR_REF_TEMPLATE_SERVER")
|
||||
//@Api(value="报表模板-服务",description = "报表模板-服务")
|
||||
//public class BrRefTemplateServer extends BaseBean {
|
||||
//
|
||||
// @Column(name="TEMPLATE_ID")
|
||||
// @ApiParam(value ="模板编号" ,example = "-1")
|
||||
// @JsonSerialize(using = ToStringSerializer.class)
|
||||
// private Long templateId;
|
||||
//
|
||||
// @Column(name="TEMPLATE_NAME_RDD")
|
||||
// @ApiParam(value ="模板名称" , access ="模板名称")
|
||||
// private String templateNameRdd;
|
||||
//
|
||||
// @Column(name="SERVER_ID")
|
||||
// @ApiParam(value ="服务编号" ,example = "-1")
|
||||
// @JsonSerialize(using = ToStringSerializer.class)
|
||||
// private Integer serverId;
|
||||
//
|
||||
// @Column(name="SERVER_NAME_RDD")
|
||||
// @ApiParam(value ="服务名称" , access ="模板名称")
|
||||
// private String serverNameRdd;
|
||||
//}
|
||||
|
@ -1,56 +1,56 @@
|
||||
package cn.estsh.i3plus.pojo.report.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Transient;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : 自定义报表模板
|
||||
* @Reference :
|
||||
* @Author : alwaysfrin
|
||||
* @CreateDate : 2018-12-25 19:54
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="BrReportTemplate")
|
||||
@Api(value="自定义报表模板",description = "报表模板,实现对应的报表生成方法")
|
||||
public class BrReportTemplate extends BaseBean {
|
||||
|
||||
@Column(name="LAYOUT_ID")
|
||||
@ApiParam(value ="布局主键")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long layoutId;
|
||||
|
||||
@Column(name="LAYOUT_COLUMN_ID")
|
||||
@ApiParam(value ="列主键")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long layoutColumnId;
|
||||
|
||||
@Column(name="TEMPLATE_NAME")
|
||||
@ApiParam(value ="模板名称")
|
||||
private String templateName;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="报表模板列表")
|
||||
private List<BrRefReportTypeset> brRefReportTypesetList;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="元素所在的列")
|
||||
private BrLayoutColumn brLayoutColumn;
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.bean;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
//import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
//import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
//import io.swagger.annotations.Api;
|
||||
//import io.swagger.annotations.ApiParam;
|
||||
//import lombok.Data;
|
||||
//import lombok.EqualsAndHashCode;
|
||||
//import org.hibernate.annotations.DynamicInsert;
|
||||
//import org.hibernate.annotations.DynamicUpdate;
|
||||
//
|
||||
//import javax.persistence.Column;
|
||||
//import javax.persistence.Entity;
|
||||
//import javax.persistence.Table;
|
||||
//import javax.persistence.Transient;
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * @Description : 自定义报表模板
|
||||
// * @Reference :
|
||||
// * @Author : alwaysfrin
|
||||
// * @CreateDate : 2018-12-25 19:54
|
||||
// * @Modify:
|
||||
// **/
|
||||
//@Data
|
||||
//@Entity
|
||||
//@DynamicInsert
|
||||
//@DynamicUpdate
|
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
//@Table(name="BrReportTemplate")
|
||||
//@Api(value="自定义报表模板",description = "报表模板,实现对应的报表生成方法")
|
||||
//public class BrReportTemplate extends BaseBean {
|
||||
//
|
||||
// @Column(name="LAYOUT_ID")
|
||||
// @ApiParam(value ="布局主键")
|
||||
// @JsonSerialize(using = ToStringSerializer.class)
|
||||
// private Long layoutId;
|
||||
//
|
||||
// @Column(name="LAYOUT_COLUMN_ID")
|
||||
// @ApiParam(value ="列主键")
|
||||
// @JsonSerialize(using = ToStringSerializer.class)
|
||||
// private Long layoutColumnId;
|
||||
//
|
||||
// @Column(name="TEMPLATE_NAME")
|
||||
// @ApiParam(value ="模板名称")
|
||||
// private String templateName;
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="报表模板列表")
|
||||
// private List<BrRefReportTypeset> brRefReportTypesetList;
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="元素所在的列")
|
||||
// private BrLayoutColumn brLayoutColumn;
|
||||
//}
|
||||
|
@ -1,165 +1,165 @@
|
||||
package cn.estsh.i3plus.pojo.report.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
import org.hibernate.annotations.Type;
|
||||
|
||||
import javax.persistence.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-18 11:23
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="BR_TEMPLATE")
|
||||
@Api(value="报表模板",description = "报表模板")
|
||||
public class BrTemplate extends BaseBean {
|
||||
|
||||
@Column(name = "DATA_SOURCE_ID")
|
||||
@ApiParam(value = "数据源ID", example = "-1")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long dataSourceId = 0L;
|
||||
|
||||
@Column(name="NAME")
|
||||
@ApiParam(value ="模板名称" , access ="模板名称")
|
||||
private String name;
|
||||
|
||||
@Column(name="TEMPLATE_TYPE")
|
||||
@ApiParam(value ="模板类型" , example ="-1",access="表格,图表")
|
||||
private Integer templateType;
|
||||
|
||||
@Column(name="TEMPLATE_STATUS")
|
||||
@ApiParam(value ="模板状态" , example ="-1",access="模板状态")
|
||||
private Integer templateStatus;
|
||||
|
||||
@Column(name="NUM_POJO")
|
||||
@ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
||||
private Integer numPojo;
|
||||
|
||||
@Lob
|
||||
@Column(name="TEMPLATE_POJO_NAMES_RDD")
|
||||
@ApiParam(value ="对象名称" , access ="对象名称")
|
||||
private String templatePojoNamesRdd;
|
||||
|
||||
@Column(name="NUM_SERVER")
|
||||
@ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
||||
private Integer numServer;
|
||||
|
||||
@Lob
|
||||
@Column(name="TEMPLATE_SERVER_ID_LIST")
|
||||
@ApiParam(value ="数据服务ID集合" , access ="服务名称")
|
||||
private String templateServerIdList;
|
||||
|
||||
@Lob
|
||||
@Column(name="TEMPLATE_SERVER_NAMES_RDD")
|
||||
@ApiParam(value ="服务名称" , access ="服务名称")
|
||||
private String templateServerNamesRdd;
|
||||
|
||||
@Column(name="NUM_TEMPLATE_ATTR_FILTER")
|
||||
@ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
||||
private Integer numTemplateAttrFilter;
|
||||
|
||||
@Lob
|
||||
@Column(name="template_attr_filter_list")
|
||||
@ApiParam(value ="模板查询条件" , access ="模板查询条件")
|
||||
private String templateAttrFilterList;
|
||||
|
||||
@Column(name="NUM_TEMPLATE_ATTR_FILTER_GROUP")
|
||||
@ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
||||
private Integer numTemplateAttrFilterGroup;
|
||||
|
||||
@Lob
|
||||
@Column(name="TEMPLATE_ATTR_FILTER_GROUP_LIST")
|
||||
@ApiParam(value ="模板分组条件" , access ="模板分組条件")
|
||||
private String templateAttrFilterGroupList;
|
||||
|
||||
@Column(name="NUM_TEMPLATE_ATTR_SHOW")
|
||||
@ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
||||
private Integer numTemplateAttrShow;
|
||||
|
||||
@Lob
|
||||
@Column(name="TEMPLATE_ATTR_SHOW_LIST")
|
||||
@ApiParam(value ="模板显示属性" , access ="模板显示属性")
|
||||
private String templateAttrShowList;
|
||||
|
||||
@Column(name="NUM_TEMPLATE_AGGREGATION")
|
||||
@ApiParam(value ="对象聚集数量" , example ="0" , access ="对象聚集数量")
|
||||
private Integer numTemplateAggregation;
|
||||
|
||||
@Lob
|
||||
@Column(name="TEMPLATE_ATTR_AGGREGATION_LIST")
|
||||
@ApiParam(value ="模板聚集属性" , access ="模板聚集属性")
|
||||
private String templateAttrAggregationList;
|
||||
|
||||
@Column(name="TEMPLATE_DESCRIPTION")
|
||||
@ApiParam(value ="模板描述" , access ="模板描述")
|
||||
private String templateDescription;
|
||||
|
||||
@Lob
|
||||
@Column(name="TEMPLATE_HQL")
|
||||
@ApiParam(value ="模板执行HQL" , access ="模板执行HQL")
|
||||
private String templateHql;
|
||||
|
||||
@Lob
|
||||
@Column(name="TEMPLATE_HTML")
|
||||
@ApiParam(value ="模板HTML" , access ="模板HTML")
|
||||
private String templateHtml;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务编号集合")
|
||||
private List<Integer> serverIdList = new ArrayList<>();
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务")
|
||||
private List<BrRefTemplateServer> serverList = new ArrayList<>();
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务对象")
|
||||
private List<BrRefServerPojo> serverPojoList = new ArrayList<>();
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务对象关系")
|
||||
private List<BrRefPojo> serverPojoRefList = new ArrayList<>();
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务对象关联属性")
|
||||
private List<BrPojoAttr> pojoAttrList = new ArrayList<>();
|
||||
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务对象查询条件")
|
||||
private List<BrPojoAttr> pojoAttrWhereList = new ArrayList<>();
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务对象分组条件")
|
||||
private List<BrPojoAttr> pojoAttrGroupList = new ArrayList<>();
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务对象聚合条件")
|
||||
private List<BrPojoAttr> pojoAttrAggregationList = new ArrayList<>();
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务对象显示属性")
|
||||
private List<BrPojoAttr> pojoAttrShowList = new ArrayList<>();
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板服务集合")
|
||||
private List<String> serverNameList = new ArrayList<>();
|
||||
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.bean;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
//import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
//import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
//import io.swagger.annotations.Api;
|
||||
//import io.swagger.annotations.ApiParam;
|
||||
//import lombok.Data;
|
||||
//import lombok.EqualsAndHashCode;
|
||||
//import org.hibernate.annotations.DynamicInsert;
|
||||
//import org.hibernate.annotations.DynamicUpdate;
|
||||
//import org.hibernate.annotations.Type;
|
||||
//
|
||||
//import javax.persistence.*;
|
||||
//import java.util.ArrayList;
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-18 11:23
|
||||
// * @Modify:
|
||||
// **/
|
||||
//@Data
|
||||
//@Entity
|
||||
//@DynamicInsert
|
||||
//@DynamicUpdate
|
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
//@Table(name="BR_TEMPLATE")
|
||||
//@Api(value="报表模板",description = "报表模板")
|
||||
//public class BrTemplate extends BaseBean {
|
||||
//
|
||||
// @Column(name = "DATA_SOURCE_ID")
|
||||
// @ApiParam(value = "数据源ID", example = "-1")
|
||||
// @JsonSerialize(using = ToStringSerializer.class)
|
||||
// private Long dataSourceId = 0L;
|
||||
//
|
||||
// @Column(name="NAME")
|
||||
// @ApiParam(value ="模板名称" , access ="模板名称")
|
||||
// private String name;
|
||||
//
|
||||
// @Column(name="TEMPLATE_TYPE")
|
||||
// @ApiParam(value ="模板类型" , example ="-1",access="表格,图表")
|
||||
// private Integer templateType;
|
||||
//
|
||||
// @Column(name="TEMPLATE_STATUS")
|
||||
// @ApiParam(value ="模板状态" , example ="-1",access="模板状态")
|
||||
// private Integer templateStatus;
|
||||
//
|
||||
// @Column(name="NUM_POJO")
|
||||
// @ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
||||
// private Integer numPojo;
|
||||
//
|
||||
// @Lob
|
||||
// @Column(name="TEMPLATE_POJO_NAMES_RDD")
|
||||
// @ApiParam(value ="对象名称" , access ="对象名称")
|
||||
// private String templatePojoNamesRdd;
|
||||
//
|
||||
// @Column(name="NUM_SERVER")
|
||||
// @ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
||||
// private Integer numServer;
|
||||
//
|
||||
// @Lob
|
||||
// @Column(name="TEMPLATE_SERVER_ID_LIST")
|
||||
// @ApiParam(value ="数据服务ID集合" , access ="服务名称")
|
||||
// private String templateServerIdList;
|
||||
//
|
||||
// @Lob
|
||||
// @Column(name="TEMPLATE_SERVER_NAMES_RDD")
|
||||
// @ApiParam(value ="服务名称" , access ="服务名称")
|
||||
// private String templateServerNamesRdd;
|
||||
//
|
||||
// @Column(name="NUM_TEMPLATE_ATTR_FILTER")
|
||||
// @ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
||||
// private Integer numTemplateAttrFilter;
|
||||
//
|
||||
// @Lob
|
||||
// @Column(name="template_attr_filter_list")
|
||||
// @ApiParam(value ="模板查询条件" , access ="模板查询条件")
|
||||
// private String templateAttrFilterList;
|
||||
//
|
||||
// @Column(name="NUM_TEMPLATE_ATTR_FILTER_GROUP")
|
||||
// @ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
||||
// private Integer numTemplateAttrFilterGroup;
|
||||
//
|
||||
// @Lob
|
||||
// @Column(name="TEMPLATE_ATTR_FILTER_GROUP_LIST")
|
||||
// @ApiParam(value ="模板分组条件" , access ="模板分組条件")
|
||||
// private String templateAttrFilterGroupList;
|
||||
//
|
||||
// @Column(name="NUM_TEMPLATE_ATTR_SHOW")
|
||||
// @ApiParam(value ="对象数量" , example ="0" , access ="对象数量")
|
||||
// private Integer numTemplateAttrShow;
|
||||
//
|
||||
// @Lob
|
||||
// @Column(name="TEMPLATE_ATTR_SHOW_LIST")
|
||||
// @ApiParam(value ="模板显示属性" , access ="模板显示属性")
|
||||
// private String templateAttrShowList;
|
||||
//
|
||||
// @Column(name="NUM_TEMPLATE_AGGREGATION")
|
||||
// @ApiParam(value ="对象聚集数量" , example ="0" , access ="对象聚集数量")
|
||||
// private Integer numTemplateAggregation;
|
||||
//
|
||||
// @Lob
|
||||
// @Column(name="TEMPLATE_ATTR_AGGREGATION_LIST")
|
||||
// @ApiParam(value ="模板聚集属性" , access ="模板聚集属性")
|
||||
// private String templateAttrAggregationList;
|
||||
//
|
||||
// @Column(name="TEMPLATE_DESCRIPTION")
|
||||
// @ApiParam(value ="模板描述" , access ="模板描述")
|
||||
// private String templateDescription;
|
||||
//
|
||||
// @Lob
|
||||
// @Column(name="TEMPLATE_HQL")
|
||||
// @ApiParam(value ="模板执行HQL" , access ="模板执行HQL")
|
||||
// private String templateHql;
|
||||
//
|
||||
// @Lob
|
||||
// @Column(name="TEMPLATE_HTML")
|
||||
// @ApiParam(value ="模板HTML" , access ="模板HTML")
|
||||
// private String templateHtml;
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务编号集合")
|
||||
// private List<Integer> serverIdList = new ArrayList<>();
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务")
|
||||
// private List<BrRefTemplateServer> serverList = new ArrayList<>();
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务对象")
|
||||
// private List<BrRefServerPojo> serverPojoList = new ArrayList<>();
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务对象关系")
|
||||
// private List<BrRefPojo> serverPojoRefList = new ArrayList<>();
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务对象关联属性")
|
||||
// private List<BrPojoAttr> pojoAttrList = new ArrayList<>();
|
||||
//
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务对象查询条件")
|
||||
// private List<BrPojoAttr> pojoAttrWhereList = new ArrayList<>();
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务对象分组条件")
|
||||
// private List<BrPojoAttr> pojoAttrGroupList = new ArrayList<>();
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务对象聚合条件")
|
||||
// private List<BrPojoAttr> pojoAttrAggregationList = new ArrayList<>();
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务对象显示属性")
|
||||
// private List<BrPojoAttr> pojoAttrShowList = new ArrayList<>();
|
||||
//
|
||||
// @Transient
|
||||
// @ApiParam(value ="模板服务集合")
|
||||
// private List<String> serverNameList = new ArrayList<>();
|
||||
//
|
||||
//}
|
||||
|
@ -1,49 +1,49 @@
|
||||
package cn.estsh.i3plus.pojo.report.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
import org.hibernate.annotations.Type;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Lob;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-18 11:23
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="BR_TEMPLATE_CUSTOM_HQL")
|
||||
@Api(value="模板自定义语句",description = "模板自定义语句")
|
||||
public class BrTemplateCustomHql extends BaseBean {
|
||||
|
||||
@Column(name="TEMPLATE_ID")
|
||||
@ApiParam(value ="模板编号" , example = "-1")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long templateId;
|
||||
|
||||
@Column(name="DATA_TYPE")
|
||||
@ApiParam(value ="自定义类型" , example ="-1")
|
||||
private Integer dataType;
|
||||
|
||||
@Lob
|
||||
@Column(name="CUSTOM_CONTENT")
|
||||
@ApiParam(value ="自定义语句内容" , access ="自定义语句内容")
|
||||
private String customContent;
|
||||
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.bean;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
//import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
//import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
//import io.swagger.annotations.Api;
|
||||
//import io.swagger.annotations.ApiParam;
|
||||
//import lombok.Data;
|
||||
//import lombok.EqualsAndHashCode;
|
||||
//import org.hibernate.annotations.DynamicInsert;
|
||||
//import org.hibernate.annotations.DynamicUpdate;
|
||||
//import org.hibernate.annotations.Type;
|
||||
//
|
||||
//import javax.persistence.Column;
|
||||
//import javax.persistence.Entity;
|
||||
//import javax.persistence.Lob;
|
||||
//import javax.persistence.Table;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-18 11:23
|
||||
// * @Modify:
|
||||
// **/
|
||||
//@Data
|
||||
//@Entity
|
||||
//@DynamicInsert
|
||||
//@DynamicUpdate
|
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
//@Table(name="BR_TEMPLATE_CUSTOM_HQL")
|
||||
//@Api(value="模板自定义语句",description = "模板自定义语句")
|
||||
//public class BrTemplateCustomHql extends BaseBean {
|
||||
//
|
||||
// @Column(name="TEMPLATE_ID")
|
||||
// @ApiParam(value ="模板编号" , example = "-1")
|
||||
// @JsonSerialize(using = ToStringSerializer.class)
|
||||
// private Long templateId;
|
||||
//
|
||||
// @Column(name="DATA_TYPE")
|
||||
// @ApiParam(value ="自定义类型" , example ="-1")
|
||||
// private Integer dataType;
|
||||
//
|
||||
// @Lob
|
||||
// @Column(name="CUSTOM_CONTENT")
|
||||
// @ApiParam(value ="自定义语句内容" , access ="自定义语句内容")
|
||||
// private String customContent;
|
||||
//
|
||||
//}
|
||||
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrPojo;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrPojoFilterAttr;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @CreateDate : 19-12-4 下午4:04
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrPojoFilterAttrRepository extends BaseRepository<BrPojoFilterAttr,Long> {
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrPojoFilter;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrPojoView;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @CreateDate : 19-12-4 下午4:04
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrPojoFilterRepository extends BaseRepository<BrPojoFilter,Long> {
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrPojo;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrPojoViewAttr;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @CreateDate : 19-12-4 下午4:04
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrPojoRepository extends BaseRepository<BrPojo,Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrPojoViewAttr;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @CreateDate : 19-12-4 下午4:04
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrPojoViewAttrRepository extends BaseRepository<BrPojoViewAttr,Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrPojoView;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @CreateDate : 19-12-4 下午4:04
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrPojoViewRepository extends BaseRepository<BrPojoView,Long> {
|
||||
}
|
@ -1,15 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrRefPojo;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-18 15:04
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrRefPojoRepository extends BaseRepository<BrRefPojo,Long> {
|
||||
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.repository;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrRefPojo;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-18 15:04
|
||||
// * @Modify:
|
||||
// **/
|
||||
//public interface BrRefPojoRepository extends BaseRepository<BrRefPojo,Long> {
|
||||
//
|
||||
//}
|
||||
|
@ -1,15 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrMenu;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrRefServerPojo;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-18 15:05
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrRefServerPojoRepository extends BaseRepository<BrRefServerPojo,Long> {
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.repository;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrMenu;
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrRefServerPojo;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-18 15:05
|
||||
// * @Modify:
|
||||
// **/
|
||||
//public interface BrRefServerPojoRepository extends BaseRepository<BrRefServerPojo,Long> {
|
||||
//}
|
||||
|
@ -1,15 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrMenu;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrRefTemplateServer;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-18 15:05
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrRefTemplateServerRepository extends BaseRepository<BrRefTemplateServer,Long> {
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.repository;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrMenu;
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrRefTemplateServer;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-18 15:05
|
||||
// * @Modify:
|
||||
// **/
|
||||
//public interface BrRefTemplateServerRepository extends BaseRepository<BrRefTemplateServer,Long> {
|
||||
//}
|
||||
|
@ -1,14 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrReportTemplate;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : alwaysfrin
|
||||
* @CreateDate : 2018-12-26 20:23
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrReportTemplateRepository extends BaseRepository<BrReportTemplate,Long> {
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.repository;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrReportTemplate;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : alwaysfrin
|
||||
// * @CreateDate : 2018-12-26 20:23
|
||||
// * @Modify:
|
||||
// **/
|
||||
//public interface BrReportTemplateRepository extends BaseRepository<BrReportTemplate,Long> {
|
||||
//}
|
||||
|
@ -1,15 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrMenu;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrTemplateCustomHql;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-18 15:05
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrTemplateCustomHqlRepository extends BaseRepository<BrTemplateCustomHql,Long> {
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.repository;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrMenu;
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrTemplateCustomHql;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-18 15:05
|
||||
// * @Modify:
|
||||
// **/
|
||||
//public interface BrTemplateCustomHqlRepository extends BaseRepository<BrTemplateCustomHql,Long> {
|
||||
//}
|
||||
|
@ -1,14 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.report.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.report.bean.BrTemplate;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-01-18 15:05
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BrTemplateRepository extends BaseRepository<BrTemplate,Long> {
|
||||
}
|
||||
//package cn.estsh.i3plus.pojo.report.repository;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
//import cn.estsh.i3plus.pojo.report.bean.BrTemplate;
|
||||
//
|
||||
///**
|
||||
// * @Description :
|
||||
// * @Reference :
|
||||
// * @Author : Adair Peng
|
||||
// * @CreateDate : 2019-01-18 15:05
|
||||
// * @Modify:
|
||||
// **/
|
||||
//public interface BrTemplateRepository extends BaseRepository<BrTemplate,Long> {
|
||||
//}
|
||||
|
Loading…
Reference in New Issue