mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2025-12-30 11:52:26 +00:00
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字符串
|
|
}
|