dict.go 1.2 KB

123456789101112131415161718192021222324252627282930
  1. package dao
  2. // Dict 字典
  3. type Dict struct {
  4. ID int64 `gorm:"primary_key" json:"id"` //主键
  5. ParentId int64 `gorm:"type:bigint;default 0" json:"parentId"` //父主键
  6. Code string `gorm:"type:varchar(255)" json:"code"` //字典码
  7. DictKey string `gorm:"type:varchar(255)" json:"dictKey"` //字典值
  8. DictValue string `gorm:"type:varchar(255)" json:"dictValue"` //字典名称
  9. Sort int `gorm:"type:int" json:"sort"` //排序
  10. Remark string `gorm:"type:varchar(255)" json:"remark"` //字典备注
  11. IsSealed int `gorm:"type:int;default 0" json:"isSealed"` //是否已封存
  12. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否已删除
  13. }
  14. func (Dict) TableName() string {
  15. return "dict"
  16. }
  17. func (c *Dict) GetByCodeAndKey() error {
  18. return Db.Model(&c).Where("code = ? and dict_key = ?", c.Code, c.DictKey).Find(&c).Error
  19. }
  20. func (c *Dict) GetByCode() ([]Dict, error) {
  21. var dict []Dict
  22. err := Db.Model(&c).Select("code, dict_key, dict_value").
  23. Where("code = ? and parent_id > 0 and is_sealed = 0 and is_deleted = 0", c.Code).
  24. Find(&dict).Error
  25. return dict, err
  26. }