ta_channel.go 334B

1234567891011121314
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaChannel struct {
  6. ChannelId string `xorm:"not null pk VARCHAR(64)"`
  7. ChannelName string `xorm:"VARCHAR(64)"`
  8. CaseId string `xorm:"VARCHAR(64)"`
  9. OrgId string `xorm:"VARCHAR(64)"`
  10. Status int `xorm:"SMALLINT(6)"`
  11. CreateDate time.Time `xorm:"DATETIME"`
  12. }