This commit is contained in:
Daniel 2025-06-12 22:21:07 +08:00
parent 67370745b2
commit d05010a71f
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
5 changed files with 73 additions and 25 deletions

View file

@ -91,6 +91,9 @@ type Item interface {
// GetValues 返回项目的所有字段值。
GetValues() []*Value
// GetValue 返回指定键 ID 的字段值。
GetValue(keyID string) (ret *Value)
// GetID 返回项目的 ID。
GetID() string
}