You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package model |
|
|
|
// AuditLog . |
|
type AuditLog struct { |
|
Order string `json:"order"` |
|
Sort string `json:"sort"` |
|
Page *Pager `json:"page"` |
|
Result []*LogRes `json:"result"` |
|
} |
|
|
|
// LogRes . |
|
type LogRes struct { |
|
Int1 int64 `json:"int_1"` |
|
Oid int64 `json:"oid"` |
|
}
|
|
|