1234567891011121314151617
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaCustomerCalendar struct {
  6. CustomerCalendarId string `xorm:"not null pk VARCHAR(64)"`
  7. ModelName string `xorm:"not null VARCHAR(64)"`
  8. CustomerId string `xorm:"VARCHAR(64)"`
  9. Email string `xorm:"TEXT"`
  10. CreateDate time.Time `xorm:"DATETIME"`
  11. MakeStatus string `xorm:"VARCHAR(32)"`
  12. OrgId string `xorm:"VARCHAR(64)"`
  13. CaseId string `xorm:"VARCHAR(64)"`
  14. Status int `xorm:"SMALLINT(6)"`
  15. }