切换导航条
此项目
正在载入...
登录
allied-creation
/
performance
·
提交
转到一个项目
GitLab
转到群组
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
tangxvhui
2 years ago
提交
163f4ad7b285897eb8d5404f35d44ae70aad1714
1 个父辈
c5049b51
暂存
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
15 行增加
和
15 行删除
pkg/infrastructure/pg/models/staff_assess.go
pkg/infrastructure/pg/models/staff_assess.go
查看文件 @
163f4ad
...
...
@@ -8,24 +8,24 @@ import (
// 记录用户需要的评估项
type
StaffAssess
struct
{
tableName
struct
{}
`pg:"staff_assess" comment:"记录用户需要的评估项"`
Id
int
`pg:",pk"`
//id
CompanyId
int
`comment:"公司id"`
//公司id
EvaluationProjectId
int
`comment:"对应的项目id"`
//对应的项目id
EvaluationProjectName
string
CycleId
int64
`comment:"对应的周期id"`
//对应的周期id
CycleName
string
StaffAssessTaskId
int
tableName
struct
{}
`pg:"staff_assess" comment:"记录用户需要的评估项"`
Id
int
`pg:",pk"`
//id
CompanyId
int
`comment:"公司id"`
//公司id
EvaluationProjectId
int
`comment:"对应的项目id"`
//对应的项目id
EvaluationProjectName
string
`comment:"对应的项目名称"`
CycleId
int64
`comment:"对应的周期id"`
//对应的周期id
CycleName
string
`comment:"对应的周期名称"`
StaffAssessTaskId
int
`comment:"评估任务的id"`
TargetUser
domain
.
StaffDesc
`comment:"被评估的目标用户"`
//被评估的目标用户
TargetDepartment
[]
domain
.
StaffDepartment
`comment:"被评估的用户所在的部门"`
//被评估的用户所在的部门
Executor
domain
.
StaffDesc
`comment:"填写评估的用户"`
//填写评估的用户
Types
string
`comment:"填写评估对应的类型"`
//填写评估对应的类型
LinkNodeId
int
`comment:"评估环节id"`
LinkNodeName
string
Status
string
`comment:"评估的填写状态"`
//评估的填写状态
BeginTime
time
.
Time
`comment:"开始时间"`
//开始时间
EndTime
time
.
Time
`comment:"截止时间"`
//截止时间
CreatedAt
time
.
Time
`comment:"数据创建时间"`
//数据创建时间
UpdatedAt
time
.
Time
`comment:"数据更新时间"`
//数据更新时间
DeletedAt
*
time
.
Time
`comment:"数据删除时间"`
//数据删除时间
LinkNodeName
string
`comment:"评估环节名称"`
Status
string
`comment:"评估的填写状态"`
//评估的填写状态
BeginTime
time
.
Time
`comment:"开始时间"`
//开始时间
EndTime
time
.
Time
`comment:"截止时间"`
//截止时间
CreatedAt
time
.
Time
`comment:"数据创建时间"`
//数据创建时间
UpdatedAt
time
.
Time
`comment:"数据更新时间"`
//数据更新时间
DeletedAt
*
time
.
Time
`comment:"数据删除时间"`
//数据删除时间
}
...
...
请
注册
或
登录
后发表评论