sub_msg_log.go 712 B

1234567891011121314151617181920212223242526
  1. package model
  2. type SubMsgLog struct {
  3. Id int64 `json:"id"`
  4. SoftVer int64 `json:"softVer"`
  5. Uuid string `json:"uuid"`
  6. FrameId int64 `json:"frameId"`
  7. CowId string `json:"cowId"`
  8. Csq int64 `json:"csq"`
  9. Temp int64 `json:"temp"`
  10. Imei string `json:"imei" `
  11. Active int32 `json:"active"`
  12. InActive int32 `json:"inactive"`
  13. RuMina int32 `json:"ruMina"`
  14. Intake int32 `json:"intake"`
  15. Gasp int32 `json:"gasp"`
  16. Other int32 `json:"other"`
  17. ReMain int32 `json:"remain"`
  18. Nccid string `json:"nccid"`
  19. CreatedAt int64 `json:"createdAt"`
  20. UpdatedAt int64 `json:"updatedAt"`
  21. }
  22. func (s *SubMsgLog) TableName() string {
  23. return "sub_msg_log"
  24. }