元素增删改查 DAO层接口完成
parent
11fd6979ed
commit
5b0d4f8d37
@ -0,0 +1,37 @@
|
||||
package cn.estsh.i3plus.pojo.model.form;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.dynamic.DynamicEntity;
|
||||
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-04-03 17:30
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class SqlScriptModel {
|
||||
|
||||
@ApiParam(value = "对象元素ID")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long elementId;
|
||||
|
||||
@ApiParam(value = "元素内容")
|
||||
private String elementContent ;
|
||||
|
||||
@ApiParam(value = "动态对象Class")
|
||||
private Class dynClass;
|
||||
|
||||
@ApiParam(value = "动态对象")
|
||||
private DynamicEntity dynObj;
|
||||
|
||||
@ApiParam(value = "封装数据", example = "-1")
|
||||
private List<SqlColumnModel> params;
|
||||
|
||||
}
|
Loading…
Reference in New Issue