|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
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;
|
|
|
|
@ -29,6 +31,11 @@ import java.util.List;
|
|
|
|
|
@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;
|
|
|
|
|