10 lines
317 B
Go
10 lines
317 B
Go
package model
|
|
|
|
type Report struct {
|
|
ReportId int64 `xorm:"not null pk autoincr INT(11)" json:"reportId"`
|
|
TaskId int64 `xorm:"INT(11) index" json:"taskId"`
|
|
Status int `xorm:"TINYINT default 1" json:"status"`
|
|
CreateAt int64 `xorm:"created" json:"createAt"`
|
|
UpdateAt int64 `xorm:"updated" json:"updateAt"`
|
|
}
|