receiver.go 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package v1
  2. type GetReceiverReq struct {
  3. Index int64 `json:"index"`
  4. PageSize int64 `json:"pagesize"`
  5. Code string `json:"code"` //接收器编码
  6. Status int64 `json:"status"` //状态
  7. }
  8. type Receiver struct {
  9. ReceiverId int64 `json:"receiverid"`
  10. Code string `json:"code"` //接收器编码
  11. Pastureid string `json:"pastureid"` //牧场id
  12. BarId string `json:"barid"` //栏舍id
  13. BarName string `json:"barname"` //栏舍名称
  14. SimId int64 `json:"simid"` //栏舍id
  15. Status int64 `json:"status"` //脖环状态
  16. Location string `json:"location"` //安装位置 设备位置(1:奶厅1,2:奶厅2)
  17. UpdateDate string `json:"updatedate"` //最后修改时间
  18. Card string `json:"card"` //sim编码 卡号
  19. PastureName string `json:"pasturename"` //牧场名称
  20. PastureCode string `json:"pasturecode"` //牧场编码
  21. Id int64 `json:"id"`
  22. Image string `json:"image"` //图片地址
  23. Style *Style `json:"style"`
  24. }
  25. type GetReceiverRes struct {
  26. List []*Receiver `json:"list"`
  27. Total int64 `json:"total"`
  28. }
  29. type AddReceiverReq struct {
  30. Code string `json:"code"` //接收器编码
  31. Pastureid string `json:"pastureid"` //牧场id
  32. BarId string `json:"barId"` //栏舍id
  33. //BarName string `json:"barname"` //栏舍名称
  34. SimId int64 `json:"simid"` //sim卡id
  35. Status int64 `json:"status"` //脖环状态
  36. Location string `json:"location"` //安装位置
  37. //UpdateDate time.Time `json:"updateDate"` //最后修改时间
  38. Card string `json:"card"` //卡号
  39. PastureName string `json:"pasturename"` //牧场名称
  40. }
  41. type EditReceiverReq struct {
  42. Id int64 `json:"id"`
  43. Code string `json:"code"` //接收器编码
  44. Pastureid string `json:"pastureid"` //牧场id
  45. BarId string `json:"barid"` //栏舍id
  46. //BarName string `json:"barname"` //栏舍名称
  47. SimId int64 `json:"simId"` //sim卡id
  48. Status int64 `json:"status"` //脖环状态
  49. Location string `json:"location"` //安装位置
  50. Card string `json:"card"` //卡号
  51. PastureName string `json:"pasturename"` //牧场名称
  52. }
  53. type ReceiverPull struct {
  54. Id int64 `json:"id"`
  55. Code string `json:"code"`
  56. }
  57. type GetReceiverPullRes struct {
  58. List []*ReceiverPull `json:"list"`
  59. //Total int64 `json:"total"`
  60. }
  61. type Style struct {
  62. Left string `json:"left"`
  63. Top string `json:"top"`
  64. }
  65. type CoordinatesInfo struct {
  66. ID int64 `json:"id"`
  67. Pastureid string `json:"pastureid"` //牧场id
  68. BarId string `json:"barid"` //栏舍id
  69. Style *Style `json:"style"`
  70. Status int64 `json:"enable"` //脖环状态
  71. Left string `json:"left"`
  72. Top string `json:"top"`
  73. }
  74. type GetReceiverInfoRes struct {
  75. List []*CoordinatesInfo `json:"list"`
  76. }
  77. type EditReceiverCoordinatesReq struct {
  78. List []*CoordinatesInfo `json:"list"`
  79. }