Files
TrangleAgent/Backend/internal/model/containmentRepo.go

11 lines
739 B
Go
Raw Normal View History

2026-01-18 18:20:40 +08:00
package model
type ContainmentRepo struct {
Abnormal int `json:"abnormal" orm:"abnormal" description:"number of contained anomalies (收容异常的数量)"`
AgentName string `json:"agentName" orm:"agent_name" description:"agent (特工)"`
AnomalyName string `json:"anomalyName" orm:"anomaly_name" description:"name of the anomaly (异常体的名字)"`
Id uint64 `json:"id" orm:"id" description:"primary key(大于0为修改其他为新增)"`
RepoName string `json:"repoName" orm:"repo_name" description:"containment repository name or code (收容库)"`
TerminalId int `json:"terminalId" orm:"terminal_id" description:"terminal (散逸端)"`
}