mirror of
				https://gitee.com/xiangheng/x_admin.git
				synced 2025-10-31 19:43:50 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			908 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			908 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package setting_model
 | |
| 
 | |
| //DictData 字典数据实体
 | |
| type DictData struct {
 | |
| 	ID         uint   `gorm:"primarykey;comment:'主键'"`
 | |
| 	TypeId     uint   `gorm:"not null;default:0;comment:'类型'"`
 | |
| 	Name       string `gorm:"not null;default:'';comment:'键名''"`
 | |
| 	Value      string `gorm:"not null;default:'';comment:'数值'"`
 | |
| 	Color      string `gorm:"default:'';comment:'颜色'"`
 | |
| 	Remark     string `gorm:"not null;default:'';comment:'备注'"`
 | |
| 	Sort       uint16 `gorm:"not null;default:0;comment:'排序'"`
 | |
| 	Status     uint8  `gorm:"not null;default:1;comment:'字典状态: 0=停用, 1=正常'"`
 | |
| 	IsDelete   uint8  `gorm:"not null;default:0;comment:'是否删除: 0=否, 1=是'"`
 | |
| 	CreateTime int64  `gorm:"autoCreateTime;not null;comment:'创建时间'"`
 | |
| 	UpdateTime int64  `gorm:"autoUpdateTime;not null;comment:'更新时间'"`
 | |
| 	DeleteTime int64  `gorm:"not null;default:0;comment:'删除时间'"`
 | |
| }
 | 
