ta_auto_reply_keywords.go 227B

12345678
  1. package model
  2. type TaAutoReplyKeywords struct {
  3. KeywordsId string `xorm:"not null pk VARCHAR(64)"`
  4. AutoReplyId string `xorm:"VARCHAR(64)"`
  5. Keywords string `xorm:"VARCHAR(32)"`
  6. Status int `xorm:"SMALLINT(6)"`
  7. }