ta_record_suppot.go 235B

123456789101112
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaRecordSuppot struct {
  6. SupportId string `xorm:"VARCHAR(64)"`
  7. RecordId string `xorm:"VARCHAR(64)"`
  8. CustomerId string `xorm:"VARCHAR(64)"`
  9. CreateDate time.Time `xorm:"DATETIME"`
  10. }