作者 郑周

Merge remote-tracking branch 'origin/test' into test

# Conflicts:
#	pkg/infrastructure/pg/models/evaluation_project.go
@@ -12,16 +12,16 @@ type StaffAssess struct { @@ -12,16 +12,16 @@ type StaffAssess struct {
12 Id int `pg:",pk"` //id 12 Id int `pg:",pk"` //id
13 CompanyId int `comment:"公司id"` //公司id 13 CompanyId int `comment:"公司id"` //公司id
14 EvaluationProjectId int `comment:"对应的项目id"` //对应的项目id 14 EvaluationProjectId int `comment:"对应的项目id"` //对应的项目id
15 - EvaluationProjectName string 15 + EvaluationProjectName string `comment:"对应的项目名称"`
16 CycleId int64 `comment:"对应的周期id"` //对应的周期id 16 CycleId int64 `comment:"对应的周期id"` //对应的周期id
17 - CycleName string  
18 - StaffAssessTaskId int 17 + CycleName string `comment:"对应的周期名称"`
  18 + StaffAssessTaskId int `comment:"评估任务的id"`
19 TargetUser domain.StaffDesc `comment:"被评估的目标用户"` //被评估的目标用户 19 TargetUser domain.StaffDesc `comment:"被评估的目标用户"` //被评估的目标用户
20 TargetDepartment []domain.StaffDepartment `comment:"被评估的用户所在的部门"` //被评估的用户所在的部门 20 TargetDepartment []domain.StaffDepartment `comment:"被评估的用户所在的部门"` //被评估的用户所在的部门
21 Executor domain.StaffDesc `comment:"填写评估的用户"` //填写评估的用户 21 Executor domain.StaffDesc `comment:"填写评估的用户"` //填写评估的用户
22 Types string `comment:"填写评估对应的类型"` //填写评估对应的类型 22 Types string `comment:"填写评估对应的类型"` //填写评估对应的类型
23 LinkNodeId int `comment:"评估环节id"` 23 LinkNodeId int `comment:"评估环节id"`
24 - LinkNodeName string 24 + LinkNodeName string `comment:"评估环节名称"`
25 Status string `comment:"评估的填写状态"` //评估的填写状态 25 Status string `comment:"评估的填写状态"` //评估的填写状态
26 BeginTime time.Time `comment:"开始时间"` //开始时间 26 BeginTime time.Time `comment:"开始时间"` //开始时间
27 EndTime time.Time `comment:"截止时间"` //截止时间 27 EndTime time.Time `comment:"截止时间"` //截止时间
@@ -20,7 +20,7 @@ type StaffAssessContent struct { @@ -20,7 +20,7 @@ type StaffAssessContent struct {
20 ReteResult string //评估的结果 20 ReteResult string //评估的结果
21 Rule domain.EvaluationRule 21 Rule domain.EvaluationRule
22 Remark []domain.AssessContemtRemark 22 Remark []domain.AssessContemtRemark
23 - Weight int //权重 23 + Weight int `pg:",use_zero"` //权重
24 CreatedAt time.Time //数据创建时间 24 CreatedAt time.Time //数据创建时间
25 UpdatedAt time.Time //数据更新时间 25 UpdatedAt time.Time //数据更新时间
26 DeletedAt *time.Time 26 DeletedAt *time.Time