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.
 
 
 

16 lines
335 B

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"`
}