18 lines
753 B
Go
18 lines
753 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type ContractTask struct {
|
|
Id int64 `orm:"id" json:"id"`
|
|
Filename string `orm:"filename" json:"filename"`
|
|
FilePath string `orm:"file_path" json:"file_path"`
|
|
DatasetIds string `orm:"dataset_ids" json:"dataset_ids"`
|
|
CaseId int64 `orm:"case_id" json:"case_id"`
|
|
Status int `orm:"status" json:"status"`
|
|
TotalClauses int `orm:"total_clauses" json:"total_clauses"`
|
|
DoneClauses int `orm:"done_clauses" json:"done_clauses"`
|
|
ErrorMsg string `orm:"error_msg" json:"error_msg"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
UpdatedAt *gtime.Time `orm:"updated_at" json:"updated_at"`
|
|
}
|