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.

16 lines
801 B

3 years ago
  1. // 自动生成模板SysDictionary
  2. package system
  3. import (
  4. "autocode/global"
  5. )
  6. // 如果含有time.Time 请自行import time包
  7. type SysDictionary struct {
  8. global.GVA_MODEL
  9. Name string `json:"name" form:"name" gorm:"column:name;comment:字典名(中)"` // 字典名(中)
  10. Type string `json:"type" form:"type" gorm:"column:type;comment:字典名(英)"` // 字典名(英)
  11. Status *bool `json:"status" form:"status" gorm:"column:status;comment:状态"` // 状态
  12. Desc string `json:"desc" form:"desc" gorm:"column:desc;comment:描述"` // 描述
  13. SysDictionaryDetails []SysDictionaryDetail `json:"sysDictionaryDetails" form:"sysDictionaryDetails"`
  14. }