We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a223fd commit c5068bfCopy full SHA for c5068bf
server/api/v1/sys_dictionary.go
@@ -79,10 +79,6 @@ func UpdateSysDictionary(c *gin.Context) {
79
func FindSysDictionary(c *gin.Context) {
80
var dictionary model.SysDictionary
81
_ = c.ShouldBindQuery(&dictionary)
82
- if err := utils.Verify(dictionary, utils.DictionaryVerify); err != nil {
83
- response.FailWithMessage(err.Error(), c)
84
- return
85
- }
86
if err, sysDictionary := service.GetSysDictionary(dictionary.Type, dictionary.ID); err != nil {
87
global.GVA_LOG.Error("查询失败!", zap.Any("err", err))
88
response.FailWithMessage("查询失败", c)
0 commit comments