pen.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package model
  2. import (
  3. "fmt"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. const IsAllYes = "Yes"
  7. type Pen struct {
  8. Id int32 `json:"id"`
  9. PastureId int64 `json:"pastureId"`
  10. Name string `json:"name"`
  11. Remarks string `json:"remarks"`
  12. PenType int32 `json:"penType"`
  13. Lengths int32 `json:"lengths"`
  14. Widths int32 `json:"widths"`
  15. DoctrinalCapacity int32 `json:"doctrinalCapacity"`
  16. ActualCapacity int32 `json:"actualCapacity"`
  17. BedNumber int32 `json:"bedNumber"`
  18. NeckNumber int32 `json:"neckNumber"`
  19. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  20. IsDelete pasturePb.IsShow_Kind `json:"isDelete"`
  21. CreatedAt int64 `json:"createdAt"`
  22. UpdatedAt int64 `json:"updatedAt"`
  23. }
  24. func (p *Pen) TableName() string {
  25. return "pen"
  26. }
  27. type PenSlice []*Pen
  28. func (p PenSlice) ToPB(configBarnTypes []*ConfigPenType) []*pasturePb.SearchBarnList {
  29. res := make([]*pasturePb.SearchBarnList, len(p))
  30. for i, v := range p {
  31. barnTypeName := ""
  32. for _, c := range configBarnTypes {
  33. if c.Id == int64(v.PenType) {
  34. barnTypeName = c.Name
  35. break
  36. }
  37. }
  38. res[i] = &pasturePb.SearchBarnList{
  39. Id: v.Id,
  40. Name: v.Name,
  41. IsShow: v.IsShow,
  42. Remarks: v.Remarks,
  43. BarnTypeId: v.PenType,
  44. BarnTypeName: barnTypeName,
  45. Lengths: v.Lengths,
  46. Widths: v.Widths,
  47. DoctrinalCapacity: v.DoctrinalCapacity,
  48. ActualCapacity: v.ActualCapacity,
  49. NeckNumber: v.NeckNumber,
  50. BedNumber: v.BedNumber,
  51. CreatedAt: int32(v.CreatedAt),
  52. UpdatedAt: int32(v.UpdatedAt),
  53. }
  54. }
  55. return res
  56. }
  57. func (p PenSlice) ToPB2(req []*pasturePb.ConfigOptionsList, isAll string) []*pasturePb.ConfigOptionsList {
  58. res := make([]*pasturePb.ConfigOptionsList, 0)
  59. if isAll == IsAllYes {
  60. res = append(res, &pasturePb.ConfigOptionsList{
  61. Value: int32(0),
  62. Label: "全部",
  63. Disabled: true,
  64. })
  65. }
  66. for _, d := range p {
  67. label := d.Name
  68. for _, r := range req {
  69. if r.Value != d.PenType {
  70. continue
  71. }
  72. label = fmt.Sprintf("%s-%s", label, r.Label)
  73. }
  74. res = append(res, &pasturePb.ConfigOptionsList{
  75. Value: int32(d.Id),
  76. Label: label,
  77. Disabled: true,
  78. })
  79. }
  80. return res
  81. }
  82. type PenWeight struct {
  83. PenId int32 `json:"penId"`
  84. CowCount int32 `json:"cowCount"`
  85. AllWeight int32 `json:"allWeight"`
  86. AvgWeight int32 `json:"avgWeight"`
  87. }
  88. type PenWeightSlice []*PenWeight
  89. func (p PenWeightSlice) ToPB(penMap map[int32]*Pen) *pasturePb.PenWeightChart {
  90. res := &pasturePb.PenWeightChart{}
  91. for _, v := range p {
  92. penName := ""
  93. if pen, ok := penMap[v.PenId]; ok {
  94. penName = pen.Name
  95. }
  96. res.Header = append(res.Header, penName)
  97. res.AllWeight = append(res.AllWeight, v.AllWeight)
  98. res.AvgWeight = append(res.AvgWeight, v.AvgWeight)
  99. res.CowCount = append(res.CowCount, v.CowCount)
  100. }
  101. return res
  102. }
  103. func (p PenWeightSlice) GetPenWeight(penId int32) *PenWeight {
  104. for _, v := range p {
  105. if v.PenId == penId {
  106. return v
  107. }
  108. }
  109. return nil
  110. }