正在显示
1 个修改的文件
包含
18 行增加
和
17 行删除
@@ -19,23 +19,24 @@ const ( | @@ -19,23 +19,24 @@ const ( | ||
19 | 19 | ||
20 | // TaskRecord 任务反馈情况记录 | 20 | // TaskRecord 任务反馈情况记录 |
21 | type TaskRecord struct { | 21 | type TaskRecord struct { |
22 | - Id int `json:"id,string" comment:"记录ID"` | ||
23 | - CompanyId int `json:"companyId,string" comment:"公司ID"` | ||
24 | - StaffAssessId int `json:"staffAssessId,string" comment:"每日评估的ID"` | ||
25 | - TaskId int `json:"taskId,string" comment:"任务ID"` | ||
26 | - TaskCategory string `json:"taskCategory" comment:"任务类别"` | ||
27 | - TaskName string `json:"taskName" comment:"任务名称"` | ||
28 | - TaskAlias string `json:"taskAlias" comment:"任务别名"` | ||
29 | - TaskLeader TaskLeader `json:"taskLeader" comment:"任务负责人"` | ||
30 | - AssistLevel int `json:"assistLevel" comment:"上级辅导情况"` | ||
31 | - AssistContent string `json:"assistContent" comment:"上级辅导内容"` | ||
32 | - AnomalyState int `json:"anomalyState" comment:"异常是否反馈状态(-1初始状态、0异常、1正常)"` | ||
33 | - TaskStages []TaskStage `json:"taskStages" comment:"里程碑列表"` | ||
34 | - TaskStageCheck TaskStage `json:"taskStageCheck" comment:"提交的里程碑"` | ||
35 | - CreatedAt time.Time `json:"createdAt" comment:"创建时间"` | ||
36 | - UpdatedAt time.Time `json:"updatedAt" comment:"更新时间"` | ||
37 | - DeletedAt *time.Time `json:"deletedAt" comment:"删除时间"` | ||
38 | - TaskCreatedBy int `json:"taskCreatedBy" comment:"任务的创建方式"` // 任务的创建方式 0: 根据模板中的任务创建,1:页面主动直接创建 | 22 | + Id int `json:"id,string" comment:"记录ID"` |
23 | + CompanyId int `json:"companyId,string" comment:"公司ID"` | ||
24 | + StaffAssessId int `json:"staffAssessId,string" comment:"每日评估的ID"` | ||
25 | + TaskId int `json:"taskId,string" comment:"任务ID"` | ||
26 | + TaskCategory string `json:"taskCategory" comment:"任务类别"` | ||
27 | + TaskName string `json:"taskName" comment:"任务名称"` | ||
28 | + TaskAlias string `json:"taskAlias" comment:"任务别名"` | ||
29 | + TaskLeader TaskLeader `json:"taskLeader" comment:"任务负责人"` | ||
30 | + RemarkContent []RemarkText `json:"remarkContent" comment:"反馈填写"` | ||
31 | + AssistLevel int `json:"assistLevel" comment:"上级辅导情况"` | ||
32 | + AssistContent string `json:"assistContent" comment:"上级辅导内容"` | ||
33 | + AnomalyState int `json:"anomalyState" comment:"异常是否反馈状态(-1初始状态、0异常、1正常)"` | ||
34 | + TaskStages []TaskStage `json:"taskStages" comment:"里程碑列表"` | ||
35 | + TaskStageCheck TaskStage `json:"taskStageCheck" comment:"提交的里程碑"` | ||
36 | + CreatedAt time.Time `json:"createdAt" comment:"创建时间"` | ||
37 | + UpdatedAt time.Time `json:"updatedAt" comment:"更新时间"` | ||
38 | + DeletedAt *time.Time `json:"deletedAt" comment:"删除时间"` | ||
39 | + TaskCreatedBy int `json:"taskCreatedBy" comment:"任务的创建方式"` // 任务的创建方式 0: 根据模板中的任务创建,1:页面主动直接创建 | ||
39 | } | 40 | } |
40 | 41 | ||
41 | type TaskRecordRepository interface { | 42 | type TaskRecordRepository interface { |
-
请 注册 或 登录 后发表评论