ta_course_verifcation.go 402B

123456789101112131415
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaCourseVerifcation struct {
  6. VerifcationId string `xorm:"not null pk VARCHAR(64)"`
  7. CourseId string `xorm:"VARCHAR(64)"`
  8. CreateDate time.Time `xorm:"DATETIME"`
  9. CreateUser string `xorm:"VARCHAR(64)"`
  10. Status int `xorm:"SMALLINT(6)"`
  11. Source string `xorm:"VARCHAR(20)"`
  12. SourceId string `xorm:"VARCHAR(64)"`
  13. }