task_record.go 1.1 KB
package models

import (
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/domain"
	"time"
)

// 任务阶段
type TaskRecord struct {
	tableName      struct{}           `comment:"评估项目" pg:"task_record"`
	Id             int                `comment:"ID" pg:"pk:id"`
	CompanyId      int                `comment:"公司ID"`
	StaffAssessId  int                `comment:"每日评估的ID"`
	TaskId         int                `comment:"任务ID"`
	TaskName       string             `comment:"任务名称"`
	TaskAlias      string             `comment:"任务别名"`
	TaskLeader     domain.TaskLeader  `comment:"任务负责人"`
	AssistLevel    int                `comment:"上级辅导情况"`
	AssistContent  string             `comment:"上级辅导内容"`
	TaskStages     []domain.TaskStage `comment:"里程碑列表"`
	TaskStageCheck domain.TaskStage   `comment:"提交的里程碑"`
	CreatedAt      time.Time          `comment:"创建时间"`
	UpdatedAt      time.Time          `comment:"更新时间"`
	DeletedAt      *time.Time         `comment:"删除时间"`
}