|
|
|
@ -1,6 +1,5 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.aps.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.annotation.FieldAnnotation;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BaseAPS;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
@ -26,17 +25,14 @@ import javax.persistence.Table;
|
|
|
|
|
public class ExpressionRecord extends BaseAPS {
|
|
|
|
|
@Column(name="BEAN_NAME")
|
|
|
|
|
@ApiParam(value ="表名")
|
|
|
|
|
@FieldAnnotation(property = false)
|
|
|
|
|
private String beanName;
|
|
|
|
|
|
|
|
|
|
@Column(name="FIELD_NAME")
|
|
|
|
|
@ApiParam(value ="字段名")
|
|
|
|
|
@FieldAnnotation(property = false)
|
|
|
|
|
private String fieldName;
|
|
|
|
|
|
|
|
|
|
@Column(name="NAME")
|
|
|
|
|
@ApiParam(value ="名称")
|
|
|
|
|
@FieldAnnotation(notEmpty = true)
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
@Column(name="EXPRESSION")
|
|
|
|
|