作者 tangxuhui

去除必填校验

@@ -14,7 +14,7 @@ type UpdateDictionaryCommand struct { @@ -14,7 +14,7 @@ type UpdateDictionaryCommand struct {
14 // 字典名称 14 // 字典名称
15 DictName string `json:"dictName" valid:"Required;MaxSize(30)"` 15 DictName string `json:"dictName" valid:"Required;MaxSize(30)"`
16 // 备注信息 16 // 备注信息
17 - Describe string `json:"describe" valid:"Required;MaxSize(100)"` 17 + Describe string `json:"describe" valid:"MaxSize(100)"`
18 // 字典值列表 18 // 字典值列表
19 DictItems []DictionaryItem `json:"dictItems"` 19 DictItems []DictionaryItem `json:"dictItems"`
20 } 20 }