dept_request.go 193 B

12345678
  1. package req
  2. // DeptQuery 部门查询参数结构体 GET请求
  3. type DeptQuery struct {
  4. ParentId int `form:"parentId"`
  5. DeptName string `form:"deptName"`
  6. Status string `form:"status"`
  7. }