|
|
|
@ -27,7 +27,7 @@ import javax.persistence.Table;
|
|
|
|
|
@DynamicUpdate
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
@Table(name="BR_REF_SERVER_POJO")
|
|
|
|
|
@Api(value="报表模板",description = "报表模板")
|
|
|
|
|
@Api(value="报表模板服务对象",description = "报表模板服务对象")
|
|
|
|
|
public class BrRefServerPojo extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Column(name="TEMPLATE_ID")
|
|
|
|
@ -44,19 +44,27 @@ public class BrRefServerPojo extends BaseBean {
|
|
|
|
|
private Integer serverId;
|
|
|
|
|
|
|
|
|
|
@Column(name="SERVER_NAME_RDD")
|
|
|
|
|
@ApiParam(value ="服务名称" , access ="模板名称")
|
|
|
|
|
@ApiParam(value ="服务名称" , access ="服务名称")
|
|
|
|
|
private String serverNameRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name="SERVER_PACKAGE_NAME_RDD")
|
|
|
|
|
@ApiParam(value ="服务对象包名称" , access ="服务对象包名称")
|
|
|
|
|
private String serverPackageNameRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name="SERVER_POJO_NAME_RDD")
|
|
|
|
|
@ApiParam(value ="服务对象名称" , access ="模板名称")
|
|
|
|
|
@ApiParam(value ="服务对象名称" , access ="服务对象名称")
|
|
|
|
|
private String serverPojoNameRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name="SERVER_POJO_NAME_DESC_RDD")
|
|
|
|
|
@ApiParam(value ="服务对象名称中文" , access ="服务对象名称中文")
|
|
|
|
|
private String serverPojoNameDescRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name="SERVER_POJO_NAME_ALIAS")
|
|
|
|
|
@ApiParam(value ="服务对象别名" , access ="模板名称")
|
|
|
|
|
@ApiParam(value ="服务对象别名" , access ="服务对象别名")
|
|
|
|
|
private String serverPojoNameAlias;
|
|
|
|
|
|
|
|
|
|
@Column(name="SERVER_POJO_CLASS_PATH")
|
|
|
|
|
@ApiParam(value ="服务对象名称" , access ="模板名称")
|
|
|
|
|
private String serverPojoClassPath;
|
|
|
|
|
@ApiParam(value ="对象全路径名称" , access ="对象全路径名称")
|
|
|
|
|
private String serverPojoFullName;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|