Some checks failed
CI / init (push) Has been cancelled
CI / Frontend node 18.16.0 (push) Has been cancelled
CI / Backend go (1.22) (push) Has been cancelled
CI / devops-test (1.22, 18.16.0) (push) Has been cancelled
CI / release-pr (push) Has been cancelled
CI / release-please (push) Has been cancelled
CI / devops-prod (1.22, 18.x) (push) Has been cancelled
CI / docker (push) Has been cancelled
10 lines
267 B
Go
10 lines
267 B
Go
package request
|
|
|
|
type SysDictionarySearch struct {
|
|
Name string `json:"name" form:"name" gorm:"column:name;comment:字典名(中)"` // 字典名(中)
|
|
}
|
|
|
|
type ImportSysDictionaryRequest struct {
|
|
Json string `json:"json" binding:"required"` // JSON字符串
|
|
}
|