query_department.go 294 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 package command import "github.com/beego/beego/v2/core/validation" // QueryDepartmentCommand 查询公司的所有部门和人数 type QueryDepartmentCommand struct { CompanyId int64 `cname:"公司ID" json:"companyId"` } func (in *QueryDepartmentCommand) Valid(*validation.Validation) { }