sub_msg_log.go 679 B

12345678910111213141516171819202122232425
  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. CreatedAt int64 `json:"createdAt"`
  19. UpdatedAt int64 `json:"updatedAt"`
  20. }
  21. func (s *SubMsgLog) TableName() string {
  22. return "sub_msg_log"
  23. }