diff --git a/src/model/user_feedback.go b/src/model/user_feedback.go index f0967c6..fe71250 100644 --- a/src/model/user_feedback.go +++ b/src/model/user_feedback.go @@ -1,13 +1,20 @@ package model +import ( + "time" +) + type UserFeedback struct { - Id int `json:"id" xorm:"not null pk default 0 INT(11)"` - Uid int `json:"uid" xorm:"default 0 INT(11)"` - Type string `json:"type" xorm:"default '0' VARCHAR(255)"` - Extra string `json:"extra" xorm:"comment('api请求头内容') TEXT"` - Content string `json:"content" xorm:"comment('问题内容') VARCHAR(5000)"` - Img string `json:"img" xorm:"comment('图片 [""]') VARCHAR(5000)"` - Idea string `json:"idea" xorm:"comment('建议') VARCHAR(5000)"` - Phone string `json:"phone" xorm:"VARCHAR(255)"` - State int `json:"state" xorm:"default 0 comment('0待解决 1处理中 2已解决') INT(1)"` + Id int `json:"id" xorm:"not null pk default 0 INT(11)"` + Uid int `json:"uid" xorm:"default 0 INT(11)"` + Type string `json:"type" xorm:"default '0' comment('问题类型') VARCHAR(255)"` + Extra string `json:"extra" xorm:"comment('api请求头内容') TEXT"` + Content string `json:"content" xorm:"comment('问题内容') VARCHAR(5000)"` + Img string `json:"img" xorm:"comment('图片 [""]') VARCHAR(5000)"` + Idea string `json:"idea" xorm:"comment('建议') VARCHAR(5000)"` + Phone string `json:"phone" xorm:"VARCHAR(255)"` + State int `json:"state" xorm:"default 0 comment('0待解决 1处理中 2已解决') INT(1)"` + Cid int `json:"cid" xorm:"default 0 INT(11)"` + Ip string `json:"ip" xorm:"VARCHAR(255)"` + CreateAt time.Time `json:"create_at" xorm:"DATETIME"` }