ta_customer_course_detail.go 764B

12345678910111213141516171819202122
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaCustomerCourseDetail struct {
  6. CustomerDetailId string `xorm:"not null pk VARCHAR(64)"`
  7. CustomerCourseId string `xorm:"VARCHAR(64)"`
  8. CourseId string `xorm:"VARCHAR(64)"`
  9. DetailId string `xorm:"VARCHAR(64)"`
  10. StartDate time.Time `xorm:"DATETIME"`
  11. EndDate time.Time `xorm:"DATETIME"`
  12. VerifyStatus string `xorm:"VARCHAR(32)"`
  13. VerifyDate time.Time `xorm:"DATETIME"`
  14. VerifyUser string `xorm:"VARCHAR(64)"`
  15. CaseId string `xorm:"VARCHAR(64)"`
  16. Status int `xorm:"SMALLINT(6)"`
  17. OrgId string `xorm:"VARCHAR(64)"`
  18. CourseName string `xorm:"VARCHAR(255)"`
  19. CustomerId string `xorm:"VARCHAR(64)"`
  20. }