@ -59,10 +59,6 @@ public class ArchivesDictionary extends BaseEntity implements Serializable {
@ApiModelProperty(value = "数据类型")
private Integer isDataType;
@Column(name = "is_data_type_details")
@ApiModelProperty(value = "数据类型详情")
private String isDataTypeDetails;
@Column(name = "is_column_length")
@ApiModelProperty(value = "字段长度")
private Integer isColumnLength;
@ -39,10 +39,6 @@ public class Field extends BaseEntity implements Serializable {
@ -42,11 +42,6 @@ public class FieldVO {
@JsonProperty("isDataType")
@JSONField(name="isDataTypeDetails")
@JsonProperty("isDataTypeDetails")
@JSONField(name="isColumnLength")
@JsonProperty("isColumnLength")
@ -39,7 +39,6 @@ public class FieldServiceImpl implements FieldService {
field.setIsDefaultValue(dto.getIsDefaultValue());
field.setDictionaryId(dto.getDictionaryId());
field.setIsDataType(dto.getIsDataType());
field.setIsDataTypeDetails(dto.getIsDataType() == 1 ? "varchar":"int");
field.setIsColumnLength(dto.getIsColumnLength());
if(null == dto.getIsSequence()) {
Integer maxSequence = fieldRepository.getMaxSequence(dto.getIsType());