Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
dbe4933fbb
@ -0,0 +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 ://TODO 提交注意修改 临时使用 带改动
|
||||||
|
* @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,24 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.model.report;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Adair Peng
|
||||||
|
* @CreateDate : 2019-01-20 14:05
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class TemplateModel {
|
||||||
|
|
||||||
|
@ApiParam("执行 HQL ")
|
||||||
|
private String hql;
|
||||||
|
|
||||||
|
@ApiParam("执行 HQL 参数名称 ")
|
||||||
|
private String[] paramName;
|
||||||
|
|
||||||
|
@ApiParam("执行 HQL 参数值 ")
|
||||||
|
private Object[] paramValue;
|
||||||
|
}
|
Loading…
Reference in New Issue