credit.go 460 B

1234567891011121314151617181920
  1. package up
  2. // .
  3. const (
  4. CreditBusinessTypeArchive = int8(1)
  5. )
  6. //CreditLog .
  7. type CreditLog struct {
  8. Type int8 `json:"type"`
  9. Optyte int8 `json:"optype"`
  10. Reason int64 `json:"reason"`
  11. BusinessType int8 `json:"business_type"`
  12. MID int64 `json:"mid"`
  13. OID int64 `json:"oid"`
  14. UID int64 `json:"uid"`
  15. Content string `json:"content"`
  16. Ctime int64 `json:"ctime"`
  17. Extra interface{}
  18. }