system_basic.go 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. ValueTypeFixed = 1 // 固定值
  11. ValueTypeRange = 2 // 范围值
  12. SourcePC = "PC"
  13. SourceApp = "MINI"
  14. )
  15. var PregnantCheckNameKeyMap = map[string]string{
  16. PregnantCheckForFirst: "初检",
  17. PregnantCheckForSecond: "复检",
  18. }
  19. var PregnantCheckNameValueMap = map[int32]string{
  20. 1: "pregnant_check_for_first",
  21. 2: "pregnant_check_for_second",
  22. }
  23. type SystemBasic struct {
  24. Id int32 `json:"id"`
  25. Name string `json:"name"`
  26. CategoryName string `json:"categoryName"`
  27. CategoryId int32 `json:"categoryId"`
  28. MinValue int32 `json:"minValue"`
  29. MaxValue int32 `json:"maxValue"`
  30. WeekValue pasturePb.Week_Kind `json:"weekValue"`
  31. ValueType pasturePb.ValueType_Kind `json:"valueType"`
  32. Remarks string `json:"remarks"`
  33. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  34. OperationId int32 `json:"operationId"`
  35. OperationName string `json:"operationName"`
  36. CreatedAt int64 `json:"createdAt"`
  37. UpdatedAt int64 `json:"updatedAt"`
  38. }
  39. func (s *SystemBasic) TableName() string {
  40. return "system_basic"
  41. }
  42. func (s *SystemBasic) EditUpdate(minValue, maxValue int32, weekValue pasturePb.Week_Kind, currentUser *SystemUser) {
  43. s.MinValue = minValue
  44. if s.ValueType == pasturePb.ValueType_Range {
  45. s.MaxValue = maxValue
  46. }
  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: pasturePb.BasicDataCategory_Kind(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. }