event_cow_log.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package model
  2. import (
  3. "fmt"
  4. "time"
  5. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  6. )
  7. const ShardTableNumber = 6
  8. type EventCowLog struct {
  9. Id int64 `json:"id"`
  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. func NewCowEventLog(
  35. cow *Cow,
  36. penMap map[int32]*Pen,
  37. cowType map[pasturePb.CowType_Kind]string,
  38. eventType pasturePb.EventType_Kind,
  39. eventTypeMap map[pasturePb.EventType_Kind]string,
  40. operation *SystemUser,
  41. description string,
  42. ) *EventCowLog {
  43. penName := ""
  44. if pen, ok := penMap[cow.PenId]; ok {
  45. penName = pen.Name
  46. }
  47. return &EventCowLog{
  48. CowId: cow.Id,
  49. DayAge: cow.GetDayAge(),
  50. Lact: cow.Lact,
  51. PenId: cow.PenId,
  52. PenName: penName,
  53. CowType: cow.CowType,
  54. CowTypeName: cowType[cow.CowType],
  55. EventType: eventType,
  56. EventTypeName: eventTypeMap[eventType],
  57. EventDescription: description,
  58. OperationId: operation.Id,
  59. OperationName: operation.Name,
  60. EventAt: time.Now().Unix(),
  61. }
  62. }