智慧食堂
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

suggested_feedback.go 890 B

vor 10 Monaten
12345678910111213
  1. package model
  2. type SuggestedFeedback struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Uid int `json:"uid" xorm:"not null comment('用户id') INT(11)"`
  5. UserIdentityId int `json:"user_identity_id" xorm:"not null comment('身份id') INT(11)"`
  6. EnterpriseId int `json:"enterprise_id" xorm:"not null comment('单位id') INT(11)"`
  7. Content string `json:"content" xorm:"not null default '' comment('反馈内容') VARCHAR(255)"`
  8. ReplyContent string `json:"reply_content" xorm:"not null default '' comment('回复内容') VARCHAR(255)"`
  9. ReplyDate string `json:"reply_date" xorm:"not null default '' comment('回复时间') CHAR(50)"`
  10. CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`
  11. UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`
  12. }