event_cow_log.go 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package model
  2. import (
  3. "fmt"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. const ShardTableNumber = 6
  7. type EventCowLog struct {
  8. Id int64 `json:"id"`
  9. PastureId int64 `json:"pastureId"`
  10. CowId int64 `json:"cowId"`
  11. DayAge int32 `json:"dayAge"`
  12. Lact int32 `json:"lact"`
  13. PenId int32 `json:"penId"`
  14. PenName string `json:"penName"`
  15. CowType pasturePb.CowType_Kind `json:"cowType"`
  16. CowTypeName string `json:"cowTypeName"`
  17. EventType pasturePb.EventType_Kind `json:"eventType"`
  18. EventTypeName string `json:"eventTypeName"`
  19. EventDescription string `json:"eventDescription"`
  20. OperationId int64 `json:"operationId"`
  21. OperationName string `json:"operationName"`
  22. EventAt int64 `json:"eventAt"`
  23. Remarks string `json:"remarks"`
  24. CreatedAt int64 `json:"createdAt"`
  25. UpdatedAt int64 `json:"updatedAt"`
  26. }
  27. func (e *EventCowLog) UnShardTableName() string {
  28. return "event_cow_log"
  29. }
  30. // TableName 表名
  31. func (e *EventCowLog) TableName() string {
  32. return fmt.Sprintf("%s_%04d", e.UnShardTableName(), e.CowId%ShardTableNumber)
  33. }
  34. type EventCowLogModel struct {
  35. Cow *Cow
  36. EventType pasturePb.EventType_Kind
  37. OperationUser *SystemUser
  38. CurrentUser *SystemUser
  39. EventAt int64
  40. ExposeEstrusType pasturePb.ExposeEstrusType_Kind
  41. PenName string
  42. Remarks string
  43. CowTypeName string
  44. EventTypeName string
  45. Description string
  46. }
  47. func NewEventCowLog(req *EventCowLogModel) *EventCowLog {
  48. operationId := int64(0)
  49. operationName := ""
  50. if req.OperationUser != nil && req.OperationUser.Id > 0 {
  51. operationId = req.OperationUser.Id
  52. operationName = req.OperationUser.Name
  53. }
  54. return &EventCowLog{
  55. PastureId: req.Cow.PastureId,
  56. CowId: req.Cow.Id,
  57. DayAge: req.Cow.GetDayAge(),
  58. Lact: req.Cow.Lact,
  59. PenId: req.Cow.PenId,
  60. PenName: req.PenName,
  61. CowType: req.Cow.CowType,
  62. CowTypeName: req.CowTypeName,
  63. EventType: req.EventType,
  64. EventTypeName: req.EventTypeName,
  65. EventDescription: req.Description,
  66. OperationId: operationId,
  67. OperationName: operationName,
  68. EventAt: req.EventAt,
  69. Remarks: req.Remarks,
  70. }
  71. }