av_breach.go 335 B

12345678910111213141516
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // AvBreach av breach
  6. type AvBreach struct {
  7. AvID int64 `json:"archive_id"`
  8. MID int64 `json:"mid"`
  9. CDate time.Time `json:"cdate"`
  10. Money int64 `json:"money"`
  11. CType int `json:"ctype"`
  12. Reason string `json:"reason"`
  13. Title string `json:"title"`
  14. }