diff --git a/src/model/user_certificate.go b/src/model/user_certificate.go new file mode 100644 index 0000000..ed67cab --- /dev/null +++ b/src/model/user_certificate.go @@ -0,0 +1,10 @@ +package model + +type UserCertificate struct { + Id int `json:"id" xorm:"not null pk autoincr INT(11)"` + Uid int `json:"uid" xorm:"default 0 INT(11)"` + Name string `json:"name" xorm:"comment('名称') VARCHAR(255)"` + StartTime string `json:"start_time" xorm:"comment('有效开始时间') VARCHAR(255)"` + EndTime string `json:"end_time" xorm:"comment('有效结束时间') VARCHAR(255)"` + No string `json:"no" xorm:"comment('编号') VARCHAR(255)"` +}