ta_course_detail.go 500B

123456789101112131415161718
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaCourseDetail struct {
  6. DetailId string `xorm:"not null pk VARCHAR(64)"`
  7. CourseId string `xorm:"VARCHAR(64)"`
  8. DetailName string `xorm:"VARCHAR(50)"`
  9. DetailDesc string `xorm:"VARCHAR(200)"`
  10. OrgId string `xorm:"VARCHAR(64)"`
  11. CaseId string `xorm:"VARCHAR(64)"`
  12. BeginDate time.Time `xorm:"DATETIME"`
  13. EndDate time.Time `xorm:"DATETIME"`
  14. Status int `xorm:"SMALLINT(6)"`
  15. CreateDate time.Time `xorm:"DATETIME"`
  16. }