punishment.go 220 B

1234567891011121314
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // Punishment def.
  6. type Punishment struct {
  7. ID int64
  8. Mid int64
  9. Type int8 //惩罚类型 1.自动封禁
  10. Reason string //惩罚原因
  11. CTime time.Time
  12. }