- package model
-
- import (
- "time"
- )
-
- type TaBodyCheck struct {
- Id string `xorm:"not null pk VARCHAR(64)"`
- UserId string `xorm:"VARCHAR(64)"`
- EquipmentId string `xorm:"not null VARCHAR(200)"`
- CreateDate time.Time `xorm:"not null DATETIME"`
- Status int `xorm:"not null comment('1为正常') INT(11)"`
- CaseId string `xorm:"VARCHAR(64)"`
- ReportUrl string `xorm:"TEXT"`
- }
|