审查视图

pkg/application/staff_assess/query/summary_query.go 859 字节
郑周 authored
1 2 3 4 5 6 7 8 9
package query

// SummaryCommand 查询项目管理-总览
type SummaryCommand struct {
	CycleId    int    `cname:"周期ID" json:"cycleId,string"`
	BeginDay   string `cname:"日期" json:"beginDay"`
	CompanyId  int    `cname:"公司ID" json:"companyId"`
	OperatorId int    `cname:"操作人ID" json:"operatorId"`
}
tangxvhui authored
10 11 12 13 14 15 16

type ExportUserAssess2Commad struct {
	CycleId      int      `cname:"周期ID" json:"cycleId,string"`
	CompanyId    int      `cname:"公司ID" json:"companyId"`
	OperatorId   int      `cname:"操作人ID" json:"operatorId"`
	ExportUserId []string `cname:"指定员工数据导出" json:"exportUserId"`
}
tangxvhui authored
17 18 19

type StaffAsessSelfCountLevel struct {
	CompanyId    int `cname:"公司ID" json:"-"`
tangxvhui authored
20
	TargetUserId int `json:"targetUserId,string"`
tangxvhui authored
21 22 23
	ProjectId    int `json:"projectId,string"`
	CycleId      int `cname:"周期ID" json:"cycleId,string"`
}