system_basic.go 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package model
  2. import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  3. const (
  4. ProactivelyStopBreedingForBackup = "proactively_stop_breeding_for_backup" // 后备牛主动停配
  5. ProactivelyStopBreedingForAdult = "proactively_stop_breeding_for_adult" // 成母牛主动停配
  6. PregnantCheckForFirst = "pregnant_check_for_first" // 初检
  7. PregnantCheckForSecond = "pregnant_check_for_second" // 复检
  8. PregnancyAge = "pregnancy_age" // 怀孕天数
  9. WeaningAge = "weaning_age" // 断奶天数
  10. EstrusWaringDays = "estrus_waring_days" // 发情预警产后天数
  11. ValueTypeFixed = 1 // 固定值
  12. ValueTypeRange = 2 // 范围值
  13. SourcePC = "PC"
  14. SourceApp = "MINI"
  15. )
  16. var PregnantCheckNameKeyMap = map[string]string{
  17. PregnantCheckForFirst: "初检",
  18. PregnantCheckForSecond: "复检",
  19. }
  20. var PregnantCheckNameValueMap = map[int32]string{
  21. 1: "pregnant_check_for_first",
  22. 2: "pregnant_check_for_second",
  23. }
  24. type SystemBasic struct {
  25. Id int32 `json:"id"`
  26. PastureId int64 `json:"pastureId"`
  27. Name string `json:"name"`
  28. CategoryName string `json:"categoryName"`
  29. CategoryId pasturePb.BasicDataCategory_Kind `json:"categoryId"`
  30. MinValue int32 `json:"minValue"`
  31. MaxValue int32 `json:"maxValue"`
  32. WeekValue pasturePb.Week_Kind `json:"weekValue"`
  33. ValueType pasturePb.ValueType_Kind `json:"valueType"`
  34. Remarks string `json:"remarks"`
  35. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  36. OperationId int32 `json:"operationId"`
  37. OperationName string `json:"operationName"`
  38. CreatedAt int64 `json:"createdAt"`
  39. UpdatedAt int64 `json:"updatedAt"`
  40. }
  41. func (s *SystemBasic) TableName() string {
  42. return "system_basic"
  43. }
  44. func (s *SystemBasic) EditUpdate(minValue, maxValue int32, weekValue pasturePb.Week_Kind, currentUser *SystemUser) {
  45. s.MinValue = minValue
  46. s.MaxValue = maxValue
  47. if s.WeekValue > -1 {
  48. s.WeekValue = weekValue
  49. }
  50. s.OperationId = int32(currentUser.Id)
  51. s.OperationName = currentUser.Name
  52. }
  53. type SystemBasicSlice []*SystemBasic
  54. func (s SystemBasicSlice) ToPb() []*pasturePb.BaseDataConfig {
  55. res := make([]*pasturePb.BaseDataConfig, len(s))
  56. for i, v := range s {
  57. res[i] = &pasturePb.BaseDataConfig{
  58. Id: v.Id,
  59. Name: v.Name,
  60. CategoryName: v.CategoryName,
  61. CategoryId: v.CategoryId,
  62. MinValue: v.MinValue,
  63. MaxValue: v.MaxValue,
  64. WeekValue: v.WeekValue,
  65. ValueType: v.ValueType,
  66. Remarks: v.Remarks,
  67. CreatedAt: int32(v.CreatedAt),
  68. UpdatedAt: int32(v.UpdatedAt),
  69. }
  70. }
  71. return res
  72. }