17 lines
335 B
Go
17 lines
335 B
Go
package model
|
|
|
|
import (
|
|
"go-common/library/time"
|
|
)
|
|
|
|
// AvBreach av breach
|
|
type AvBreach struct {
|
|
AvID int64 `json:"archive_id"`
|
|
MID int64 `json:"mid"`
|
|
CDate time.Time `json:"cdate"`
|
|
Money int64 `json:"money"`
|
|
CType int `json:"ctype"`
|
|
Reason string `json:"reason"`
|
|
Title string `json:"title"`
|
|
}
|