2020-04-04 13:39:07 +00:00
|
|
|
package model
|
2020-03-22 15:18:22 +00:00
|
|
|
|
2020-03-30 06:21:51 +00:00
|
|
|
// 初始版本自动化代码工具
|
2020-03-22 15:18:22 +00:00
|
|
|
type AutoCodeStruct struct {
|
2020-05-03 13:52:14 +00:00
|
|
|
StructName string `json:"structName"`
|
2020-07-05 14:07:22 +00:00
|
|
|
TableName string `json:"tableName"`
|
2020-05-03 13:52:14 +00:00
|
|
|
PackageName string `json:"packageName"`
|
|
|
|
|
Abbreviation string `json:"abbreviation"`
|
2020-06-11 03:40:21 +00:00
|
|
|
Description string `json:"description"`
|
2020-05-03 13:52:14 +00:00
|
|
|
AutoCreateApiToSql bool `json:"autoCreateApiToSql"`
|
2020-11-07 03:04:54 +00:00
|
|
|
AutoMoveFile bool `json:"autoMoveFile"`
|
2020-05-03 13:52:14 +00:00
|
|
|
Fields []Field `json:"fields"`
|
2020-03-22 15:18:22 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-29 16:06:48 +00:00
|
|
|
type Field struct {
|
2020-06-11 03:40:21 +00:00
|
|
|
FieldName string `json:"fieldName"`
|
|
|
|
|
FieldDesc string `json:"fieldDesc"`
|
|
|
|
|
FieldType string `json:"fieldType"`
|
|
|
|
|
FieldJson string `json:"fieldJson"`
|
2020-07-05 14:07:22 +00:00
|
|
|
DataType string `json:"dataType"`
|
|
|
|
|
DataTypeLong string `json:"dataTypeLong"`
|
2020-06-11 03:40:21 +00:00
|
|
|
Comment string `json:"comment"`
|
|
|
|
|
ColumnName string `json:"columnName"`
|
|
|
|
|
FieldSearchType string `json:"fieldSearchType"`
|
2020-07-18 06:27:03 +00:00
|
|
|
DictType string `json:"dictType"`
|
2020-06-11 03:40:21 +00:00
|
|
|
}
|