12 lines
187 B
Go
12 lines
187 B
Go
package block
|
|
|
|
import (
|
|
xtime "go-common/library/time"
|
|
)
|
|
|
|
// CreditAnswerMSG param struct
|
|
type CreditAnswerMSG struct {
|
|
MID int64 `json:"mid"`
|
|
MTime xtime.Time `json:"mtime"`
|
|
}
|