名称修改
parent
dc94c6ef34
commit
427541b186
|
@ -82,7 +82,7 @@ public class Structure extends BaseEntity
|
||||||
.columnRemark(structure.columnRemark)
|
.columnRemark(structure.columnRemark)
|
||||||
.columnName(structure.columnName)
|
.columnName(structure.columnName)
|
||||||
.columnType(structure.columnType)
|
.columnType(structure.columnType)
|
||||||
.isPrimary(structure.isPrimary)
|
.isNull(structure.isNull)
|
||||||
.tableAsName(tableAsName+"_"+structure.columnName)
|
.tableAsName(tableAsName+"_"+structure.columnName)
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,14 +33,14 @@ public class StructureResp {
|
||||||
|
|
||||||
/** 是否主键 'Y'是主键 'N'不是主键 */
|
/** 是否主键 'Y'是主键 'N'不是主键 */
|
||||||
@Excel(name = "是否主键 'Y'是主键 'N'不是主键")
|
@Excel(name = "是否主键 'Y'是主键 'N'不是主键")
|
||||||
private String isPrimary;
|
private String isNull;
|
||||||
|
|
||||||
/** 数据类型 */
|
/** 数据类型 */
|
||||||
@Excel(name = "数据类型")
|
@Excel(name = "数据类型")
|
||||||
private String columnType;
|
private String columnType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*别名
|
||||||
*/
|
*/
|
||||||
private String tableAsName;
|
private String tableAsName;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue