ta_body_check.go 419B

123456789101112131415
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaBodyCheck struct {
  6. Id string `xorm:"not null pk VARCHAR(64)"`
  7. UserId string `xorm:"VARCHAR(64)"`
  8. EquipmentId string `xorm:"not null VARCHAR(200)"`
  9. CreateDate time.Time `xorm:"not null DATETIME"`
  10. Status int `xorm:"not null comment('1为正常') INT(11)"`
  11. CaseId string `xorm:"VARCHAR(64)"`
  12. ReportUrl string `xorm:"TEXT"`
  13. }