config_data.go 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package backend
  2. import (
  3. "context"
  4. "kpt-pasture/model"
  5. "net/http"
  6. xxerr "gitee.com/xuyiping_admin/pkg/xerr"
  7. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  8. )
  9. func (s *StoreEntry) BarnTypeOptions(ctx context.Context) (*pasturePb.ConfigOptionsListResponse, error) {
  10. configBarnTypeList := make([]*model.ConfigPenType, 0)
  11. if err := s.DB.Table(new(model.ConfigPenType).TableName()).Find(&configBarnTypeList).Error; err != nil {
  12. return nil, err
  13. }
  14. return &pasturePb.ConfigOptionsListResponse{
  15. Code: http.StatusOK,
  16. Message: "ok",
  17. Data: model.ConfigBarnTypeSlice(configBarnTypeList).ToPB2(),
  18. }, nil
  19. }
  20. func (s *StoreEntry) BreedStatusOptions(ctx context.Context) (*pasturePb.ConfigOptionsListResponse, error) {
  21. configBreedStatusList := make([]*model.ConfigBreedStatus, 0)
  22. if err := s.DB.Table(new(model.ConfigBreedStatus).TableName()).Find(&configBreedStatusList).Error; err != nil {
  23. return nil, xxerr.WithStack(err)
  24. }
  25. return &pasturePb.ConfigOptionsListResponse{
  26. Code: http.StatusOK,
  27. Message: "ok",
  28. Data: model.ConfigBreedStatusSlice(configBreedStatusList).ToPB2(),
  29. }, nil
  30. }
  31. func (s *StoreEntry) CowKindOptions(ctx context.Context) (*pasturePb.ConfigOptionsListResponse, error) {
  32. configCowKindList := make([]*model.ConfigCowKind, 0)
  33. if err := s.DB.Table(new(model.ConfigCowKind).TableName()).Find(&configCowKindList).Error; err != nil {
  34. return nil, xxerr.WithStack(err)
  35. }
  36. return &pasturePb.ConfigOptionsListResponse{
  37. Code: http.StatusOK,
  38. Message: "ok",
  39. Data: model.ConfigCowKindSlice(configCowKindList).ToPB2(),
  40. }, nil
  41. }
  42. func (s *StoreEntry) CowSourceOptions(ctx context.Context) (*pasturePb.ConfigOptionsListResponse, error) {
  43. configCowSourceList := make([]*model.ConfigCowSource, 0)
  44. if err := s.DB.Table(new(model.ConfigCowSource).TableName()).Find(&configCowSourceList).Error; err != nil {
  45. return nil, xxerr.WithStack(err)
  46. }
  47. return &pasturePb.ConfigOptionsListResponse{
  48. Code: http.StatusOK,
  49. Message: "ok",
  50. Data: model.ConfigCowSourceSlice(configCowSourceList).ToPB2(),
  51. }, nil
  52. }
  53. func (s *StoreEntry) CowStatusOptions(ctx context.Context) (*pasturePb.ConfigOptionsListResponse, error) {
  54. configCowStatusList := make([]*model.ConfigCowStatus, 0)
  55. if err := s.DB.Table(new(model.ConfigCowStatus).TableName()).Find(&configCowStatusList).Error; err != nil {
  56. return nil, xxerr.WithStack(err)
  57. }
  58. return &pasturePb.ConfigOptionsListResponse{
  59. Code: http.StatusOK,
  60. Message: "ok",
  61. Data: model.ConfigCowStatusSlice(configCowStatusList).ToPB2(),
  62. }, nil
  63. }
  64. func (s *StoreEntry) CowTypeOptions(ctx context.Context) (*pasturePb.ConfigOptionsListResponse, error) {
  65. configCowTypeList := make([]*model.ConfigCowType, 0)
  66. if err := s.DB.Table(new(model.ConfigCowType).TableName()).Find(&configCowTypeList).Error; err != nil {
  67. return nil, xxerr.WithStack(err)
  68. }
  69. return &pasturePb.ConfigOptionsListResponse{
  70. Code: http.StatusOK,
  71. Message: "ok",
  72. Data: model.ConfigCowTypeSlice(configCowTypeList).ToPB2(),
  73. }, nil
  74. }
  75. func (s *StoreEntry) CowTransferPenReasonOptions(ctx context.Context) (*pasturePb.ConfigOptionsListResponse, error) {
  76. configTransferPenReasonList := make([]*model.ConfigTransferPenReason, 0)
  77. if err := s.DB.Table(new(model.ConfigTransferPenReason).TableName()).Find(&configTransferPenReasonList).Error; err != nil {
  78. return nil, xxerr.WithStack(err)
  79. }
  80. return &pasturePb.ConfigOptionsListResponse{
  81. Code: http.StatusOK,
  82. Message: "ok",
  83. Data: model.ConfigTransferPenReasonSlice(configTransferPenReasonList).ToPB2(),
  84. }, nil
  85. }