package model

type TaAutoReplyKeywords struct {
	KeywordsId  string `xorm:"not null pk VARCHAR(64)"`
	AutoReplyId string `xorm:"VARCHAR(64)"`
	Keywords    string `xorm:"VARCHAR(32)"`
	Status      int    `xorm:"SMALLINT(6)"`
}