You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
4.2 KiB
66 lines
4.2 KiB
|
4 years ago
|
package assessmentmodel
|
||
|
|
|
||
|
|
//职责类别
|
||
|
|
type DutyClass struct {
|
||
|
|
Id int64 `json:"id" gorm:"column:id;type:bigint(20) unsigned;not null;comment:Id"`
|
||
|
|
Title string `json:"title" gorm:"column:title;type:varchar(255);comment:职责类别名称"`
|
||
|
|
Type int `json:"type" gorm:"column:type;type:tinyint(1) unsigned;default:1;not null;comment:类型(1:职能部门;2:生产部门)"`
|
||
|
|
Weight int `json:"weight" gorm:"column:weight;type:int(3) unsigned;default:0;not null;comment:权重比例"`
|
||
|
|
Time int64 `json:"time" gorm:"column:time;type:bigint(20) unsigned;default:0;not null;comment:创建时间"`
|
||
|
|
State int `json:"state" gorm:"column:state;type:tinyint(1) unsigned;default:1;not null;comment:状态"`
|
||
|
|
}
|
||
|
|
|
||
|
|
func (DutyClass *DutyClass) TableName() string {
|
||
|
|
return "dutyclass"
|
||
|
|
}
|
||
|
|
|
||
|
|
//履职考核表
|
||
|
|
type DepartDuty struct {
|
||
|
|
Id int64 `json:"id" gorm:"column:de_id;type:bigint(20) unsigned;not null;comment:Id"`
|
||
|
|
Title string `json:"title" gorm:"column:de_title;type:varchar(255);comment:考核名称"`
|
||
|
|
State int `json:"state" gorm:"column:de_satte;type:tinyint(1) unsigned;default:1;not null;comment:状态(1:启用;2:禁用;3:删除)"`
|
||
|
|
Time int64 `json:"time" gorm:"column:de_time;type:bigint(20) unsigned;default:0;not null;comment:创建时间"`
|
||
|
|
PartId int64 `json:"partId" gorm:"column:de_partid;type:bigint(20) unsigned;default:0;not null;comment:部门ID"`
|
||
|
|
ClassId int64 `json:"classId" gorm:"column:de_class;type:bigint(20) unsigned;default:0;not null;comment:考核类别"`
|
||
|
|
AssessId int64 `json:"assessId" gorm:"column:de_assess;type:bigint(20) unsigned;default:0;not null;comment:考核项目"`
|
||
|
|
DutyId int64 `json:"dutyId" gorm:"column:de_duty;type:bigint(20) unsigned;default:0;not null;comment:具体职责"`
|
||
|
|
Rescore int64 `json:"rescore" gorm:"column:de_rescore;type:int(3) unsigned;default:0;not null;comment:参考分值"`
|
||
|
|
Group int64 `json:"group" gorm:"column:de_group;type:int(3) unsigned;default:0;not null;comment:集团"`
|
||
|
|
}
|
||
|
|
|
||
|
|
func (DepartDuty *DepartDuty) TableName() string {
|
||
|
|
return "departduty"
|
||
|
|
}
|
||
|
|
|
||
|
|
//职责详情
|
||
|
|
type DutyContent struct {
|
||
|
|
Id int64 `json:"id" gorm:"column:dc_id;type:bigint(20) unsigned;not null;comment:Id"`
|
||
|
|
Title string `json:"title" gorm:"column:dc_title;type:text;comment:具体职责"`
|
||
|
|
Time int64 `json:"time" gorm:"column:dc_time;type:bigint(20) unsigned;default:0;not null;comment:创建时间"`
|
||
|
|
State int `json:"state" gorm:"column:dc_state;type:tinyint(1) unsigned;default:1;not null;comment:状态(1:启用;2:禁用;3:删除)"`
|
||
|
|
PartId int64 `json:"partId" gorm:"column:dc_parent;type:bigint(20) unsigned;default:0;not null;comment:父级"`
|
||
|
|
UserType int `json:"userType" gorm:"column:dc_user_type;type:tinyint(1) unsigned;default:1;not null;comment:考核部门类型(1:指定人;2:指定部门)"`
|
||
|
|
UserDump int64 `json:"userDump" gorm:"column:dc_user_dump;type:bigint(20) unsigned;default:0;not null;comment:考核人执行人"`
|
||
|
|
Dump int64 `json:"dump" gorm:"column:dc_dump;type:bigint(20) unsigned;default:0;not null;comment:考核执行部门"`
|
||
|
|
}
|
||
|
|
|
||
|
|
func (DutyContent *DutyContent) TableName() string {
|
||
|
|
return "dutycontent"
|
||
|
|
}
|
||
|
|
|
||
|
|
//考核项目
|
||
|
|
type AssessMentitems struct {
|
||
|
|
Id int64 `json:"id" gorm:"column:ai_id;type:bigint(20) unsigned;not null;comment:Id"`
|
||
|
|
Title string `json:"title" gorm:"column:ai_title;type:varchar(255);comment:考核类别"`
|
||
|
|
Weight int `json:"weight" gorm:"column:ai_weight;type:int(3) unsigned;default:0;not null;comment:权重比例"`
|
||
|
|
Fraction int `json:"fraction" gorm:"column:ai_fraction;type:int(3) unsigned;default:0;not null;comment:分数"`
|
||
|
|
Content string `json:"content" gorm:"column:ai_content;type:text;comment:说明"`
|
||
|
|
PartId int64 `json:"partId" gorm:"column:ai_parent;type:bigint(20) unsigned;default:0;not null;comment:父级"`
|
||
|
|
Time int64 `json:"time" gorm:"column:ai_time;type:bigint(20) unsigned;default:0;not null;comment:创建时间"`
|
||
|
|
State int `json:"state" gorm:"column:ai_state;type:tinyint(1) unsigned;default:1;not null;comment:状态(1:启用;2:禁用;3:删除)"`
|
||
|
|
}
|
||
|
|
|
||
|
|
func (AssessMentitems *AssessMentitems) TableName() string {
|
||
|
|
return "assessmentitems"
|
||
|
|
}
|