cutego/core/api/v1/request/dept_request.go

9 lines
197 B
Go
Raw Normal View History

2022-03-01 13:50:13 +08:00
package request
// DeptQuery 部门查询参数结构体 GET请求
type DeptQuery struct {
ParentId int `form:"parentId"`
DeptName string `form:"deptName"`
Status string `form:"status"`
}