|
|
package domain
|
|
|
|
|
|
//TODO 移除文件
|
|
|
//DictionaryItem 字典明细项
|
|
|
type DictionaryItem struct {
|
|
|
// 项编码
|
|
|
ItemCode string `json:"itemCode"`
|
|
|
// 项标签
|
|
|
ItemLabel string `json:"itemLabel"`
|
|
|
// 值
|
|
|
ItemValue string `json:"itemValue"`
|
|
|
// 是否可见【1:不可以】【2:可以】
|
|
|
IsShow int `json:"isShow"`
|
|
|
// 显示序号
|
|
|
Sort int `json:"sort"`
|
|
|
}
|
|
|
|
|
|
type DictionaryItemShow int
|
|
|
|
|
|
const (
|
|
|
DictionaryItemIsShow int = 1 //不可见
|
|
|
DictionaryItemNotShow int = 2 //可见
|
|
|
) |
...
|
...
|
|