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.
17 lines
417 B
17 lines
417 B
package income |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
// AvBreach av breach record |
|
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"` |
|
UploadTime time.Time `json:"upload_time"` |
|
Nickname string `json:"nickname"` |
|
}
|
|
|