feat:完善项目管理,增加专家列表信息
This commit is contained in:
@ -4,6 +4,7 @@ import (
|
||||
"SciencesServer/config"
|
||||
"SciencesServer/utils"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
||||
type Gender struct {
|
||||
@ -90,6 +91,7 @@ const (
|
||||
type Examine struct {
|
||||
ExamineStatus ExamineStatusKind `gorm:"column:examine_status;type:tinyint(1);default:0;comment:审核状态(0:审核中,1:审核通过,2:审核拒绝)" json:"examine_status"`
|
||||
ExamineRemark string `gorm:"column:examine_remark;type:varchar(255);default:'';comment:审核备注" json:"examine_remark"`
|
||||
ExamineAt time.Time `gorm:"column:examine_at;type:datetime;default:null;comment:审核时间" json:"examine_at"`
|
||||
}
|
||||
|
||||
// ExamineStatusKind 审核状态
|
||||
|
Reference in New Issue
Block a user