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"` 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"` }