feat: 新增代码字段拖动排序

新增代码字段拖动排序功能
优化代码生成前端vue页面的部分内容
This commit is contained in:
Theo
2024-08-01 00:00:00 +08:00
parent d1c93e39cf
commit e6598df288
5 changed files with 30 additions and 16 deletions

View File

@@ -48,6 +48,11 @@ public class GenFieldConfig extends BaseEntity {
*/
private String fieldName;
/**
* 字段排序
*/
private Integer fieldSort;
/**
* 字段类型
*/

View File

@@ -57,6 +57,9 @@ public class GenConfigForm {
@Schema(description = "字段名")
private String fieldName;
@Schema(description = "字段排序")
private Integer fieldSort;
@Schema(description = "字段类型")
private String fieldType;