go-common/app/admin/main/spy/model/punishment.go
2019-04-22 18:49:16 +08:00

15 lines
220 B
Go

package model
import (
"go-common/library/time"
)
// Punishment def.
type Punishment struct {
ID int64
Mid int64
Type int8 //惩罚类型 1.自动封禁
Reason string //惩罚原因
CTime time.Time
}