Files
TrangleAgent/Backend/internal/model/containmentRepo.go
2026-01-18 18:20:40 +08:00

11 lines
739 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 (散逸端)"`
}