notice.go 412 B

123456789101112131415161718
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // Notice notice
  6. type Notice struct {
  7. ID int64 `json:"id"`
  8. Title string `json:"title"`
  9. Type int `json:"type"`
  10. Platform int `json:"platform"`
  11. Link string `json:"link"`
  12. Status int `json:"status"`
  13. IsDeleted int `json:"-"`
  14. CTime time.Time `json:"ctime"`
  15. MTime time.Time `json:"mtime"`
  16. }