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.

15 lines
425 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. FieldType string `json:"fieldType"`
  12. FieldJson string `json:"fieldJson"`
  13. ColumnName string `json:"columnName"`
  14. }