This commit is contained in:
2026-09-02 11:18:04 +08:00
parent f55ec114cc
commit 1eb97faaa7
11 changed files with 142 additions and 89 deletions
+2 -4
View File
@@ -2,15 +2,13 @@ package entity
import "github.com/gogf/gf/v2/os/gtime"
// DatasetImage 数据集图片:文件在 datasets/<数据集名>/<filename>
// AI 生成图记录 prompt(付费资产,追溯用);标注为 JSON 数组存本表
// (元素同 dto.AdminLabelBoxclass/cx/cy/w/h/confidenceYOLO 归一化)。
// DatasetImage 数据集图片:文件在 datasets/<数据集名>/<filename>
// 标注为 JSON 数组存本表(元素同 dto.AdminLabelBoxclass/cx/cy/w/h/confidenceYOLO 归一化)。
type DatasetImage struct {
Id int64 `json:"id" orm:"id" description:"自增主键"`
DatasetId int64 `json:"datasetId" orm:"dataset_id" description:"所属数据集"`
Filename string `json:"filename" orm:"filename" description:"唯一文件名(防重名加时间戳后缀)"`
Source string `json:"source" orm:"source" description:"manual|ai"`
Prompt string `json:"prompt" orm:"prompt" description:"AI 生成图提示词"`
AnimalCount int `json:"animalCount" orm:"animal_count" description:"AI 生成时的目标数量上限(0=未限定),自动标注按置信度裁剪到此数"`
LabelsJson string `json:"labelsJson" orm:"labels_json" description:"标注 JSON 数组(AI 自动标注与人工标注同存,null/''/'[]'=未标注)"`
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"创建时间"`