作者 tangxvhui

数据类型调整

@@ -4,6 +4,6 @@ package query @@ -4,6 +4,6 @@ package query
4 type GetExecutorSelfAssessQuery struct { 4 type GetExecutorSelfAssessQuery struct {
5 CompanyId int `json:"companyId"` // 5 CompanyId int `json:"companyId"` //
6 TargetUserId int `json:"targetUserId,string"` //评估的执行人,必填 6 TargetUserId int `json:"targetUserId,string"` //评估的执行人,必填
7 - CycleId int `json:"cycleId"` //评估周期id 必填 7 + CycleId int `json:"cycleId,string"` //评估周期id 必填
8 BeginDay string `json:"beginDay"` //评估任务的开始日期 2006-01-02 8 BeginDay string `json:"beginDay"` //评估任务的开始日期 2006-01-02
9 } 9 }
@@ -7,6 +7,6 @@ type ListExecutorAssessQuery struct { @@ -7,6 +7,6 @@ type ListExecutorAssessQuery struct {
7 UserName string `json:"userName"` //查询条件 员工的名称 7 UserName string `json:"userName"` //查询条件 员工的名称
8 CompanyId int `json:"companyId"` // 8 CompanyId int `json:"companyId"` //
9 ExecutorId int `json:"executorId,string"` //评估的执行人,必填 9 ExecutorId int `json:"executorId,string"` //评估的执行人,必填
10 - CycleId int `json:"cycleId"` //评估周期id 必填 10 + CycleId int `json:"cycleId,string"` //评估周期id 必填
11 BeginDay string `json:"beginDay"` //评估任务的开始日期 2006-01-02 11 BeginDay string `json:"beginDay"` //评估任务的开始日期 2006-01-02
12 } 12 }
@@ -4,6 +4,6 @@ package query @@ -4,6 +4,6 @@ package query
4 type ListInviteUserQuery struct { 4 type ListInviteUserQuery struct {
5 CompanyId int `json:"companyId"` //对公司 5 CompanyId int `json:"companyId"` //对公司
6 TargetUserId int `json:"targetUserId,string"` //被评估的员工id 6 TargetUserId int `json:"targetUserId,string"` //被评估的员工id
7 - CycleId int `json:"CycleId"` //评估任务的周期id 7 + CycleId int `json:"CycleId,string"` //评估任务的周期id
8 BeginDay string `json:"beginDay"` //日期 8 BeginDay string `json:"beginDay"` //日期
9 } 9 }
@@ -6,6 +6,6 @@ type ListTargetAssessQuery struct { @@ -6,6 +6,6 @@ type ListTargetAssessQuery struct {
6 PageSize int `json:"pageSize"` 6 PageSize int `json:"pageSize"`
7 CompanyId int `json:"companyId"` // 7 CompanyId int `json:"companyId"` //
8 TargetUserId int `json:"targetUserId,string"` //评估的执行人,必填 8 TargetUserId int `json:"targetUserId,string"` //评估的执行人,必填
9 - CycleId int `json:"cycleId"` //评估周期id 必填 9 + CycleId int `json:"cycleId,string"` //评估周期id 必填
10 BeginDay string `json:"beginDay"` //评估任务的开始日期 2006-01-02 10 BeginDay string `json:"beginDay"` //评估任务的开始日期 2006-01-02
11 } 11 }