|
|
|
@ -29,6 +29,7 @@ import javax.persistence.Transient;
|
|
|
|
|
@Api("数据导入字段配置")
|
|
|
|
|
public class ImportField extends BaseAPS {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 8848879008582197564L;
|
|
|
|
|
@Column(name="FIELD_NAME")
|
|
|
|
|
@ApiParam("字段名")
|
|
|
|
|
private String fieldName;
|
|
|
|
@ -48,6 +49,14 @@ public class ImportField extends BaseAPS {
|
|
|
|
|
@ApiParam(value = "最大长度", example = "0")
|
|
|
|
|
private Integer maxLength;
|
|
|
|
|
|
|
|
|
|
@Column(name="RELATION_TABLE")
|
|
|
|
|
@ApiParam("关联表名")
|
|
|
|
|
private String relationTable;
|
|
|
|
|
|
|
|
|
|
@Column(name="RELATION_FIELD")
|
|
|
|
|
@ApiParam("关联字段")
|
|
|
|
|
private String relationField;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
private boolean hasDeal = false;
|
|
|
|
|
|
|
|
|
|