Files
rag-local/kb/model/entity/evidence.go
T
2026-08-20 12:05:53 +08:00

19 lines
846 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
type Evidence struct {
Id int64 `orm:"id" json:"id"`
Filename string `orm:"filename" json:"filename"`
FilePath string `orm:"file_path" json:"file_path"`
FileType string `orm:"file_type" json:"file_type"`
EvidenceType string `orm:"evidence_type" json:"evidence_type"`
Description string `orm:"description" json:"description"`
CaseId int64 `orm:"case_id" json:"case_id"`
DatasetIds string `orm:"dataset_ids" json:"dataset_ids"`
ContractTaskId int64 `orm:"contract_task_id" json:"contract_task_id"`
Status int `orm:"status" json:"status"`
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
UpdatedAt *gtime.Time `orm:"updated_at" json:"updated_at"`
}