You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
464 B

  1. package model
  2. // 初始版本自动化代码工具
  3. type AutoCodeStruct struct {
  4. StructName string `json:"structName"`
  5. PackageName string `json:"packageName"`
  6. Abbreviation string `json:"abbreviation"`
  7. Fields []Field `json:"fields"`
  8. }
  9. type Field struct {
  10. FieldName string `json:"fieldName"`
  11. FieldDesc string `json:"fieldDesc"`
  12. FieldType string `json:"fieldType"`
  13. FieldJson string `json:"fieldJson"`
  14. ColumnName string `json:"columnName"`
  15. }