evaluation_cycle_template.go 685 字节
package models

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

type EvaluationCycleTemplate struct {
	tableName struct{}                   `comment:"评估周期模板" pg:"evaluation_cycle_template"`
	Id        int64                      `comment:"模板ID" pg:"pk:id"`
	Name      string                     `comment:"模板名称"`
	Template  *domain.EvaluationTemplate `comment:"模板数据"`
	CycleId   int64                      `comment:"周期ID"`
	CreatedAt time.Time                  `comment:"创建时间"`
	UpdatedAt time.Time                  `comment:"更新时间"`
	DeletedAt *time.Time                 `comment:"删除时间"`
}