v1.5.0-gamma

This commit is contained in:
2023-06-30 11:21:47 +03:00
parent 29c7f143fe
commit f50f71ab0d
98 changed files with 2369 additions and 1150 deletions

View File

@@ -52,7 +52,14 @@ type ItemVINS struct {
}
// List of VINSes
type ListVINS []ItemVINS
type ListVINS struct {
Data []ItemVINS `json:"data"`
EntryCount uint64 `json:"entryCount"`
}
// List of VINSes search result
type SearchListVINS []ItemVINS
// Main information about audit
type ItemAudit struct {
@@ -620,6 +627,12 @@ type RecordVINS struct {
// Status
Status string `json:"status"`
// Updated by
UpdatedBy string `json:"updatedBy"`
// Updated time
UpdatedTime uint64 `json:"updatedTime"`
// User managed
UserManaged bool `json:"userManaged"`