feat:完善项目管理,增加专家列表信息

This commit is contained in:
henry
2021-12-10 18:16:41 +08:00
parent 2ee564d540
commit fdcd46bf49
14 changed files with 265 additions and 109 deletions

View File

@ -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 审核状态