config_barn_type.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package model
  2. import (
  3. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  4. )
  5. type ConfigPenType struct {
  6. Id int64 `json:"id"`
  7. Name string `json:"name"`
  8. Remarks string `json:"remarks"`
  9. IsShow pasturePb.IsShow_Kind `json:"is_show"`
  10. CreatedAt int64 `json:"created_at"`
  11. UpdatedAt int64 `json:"updated_at"`
  12. }
  13. func (c *ConfigPenType) TableName() string {
  14. return "config_pen_type"
  15. }
  16. type ConfigBarnTypeSlice []*ConfigPenType
  17. func (c ConfigBarnTypeSlice) ToPB2() []*pasturePb.ConfigOptionsList {
  18. res := make([]*pasturePb.ConfigOptionsList, len(c))
  19. for i, d := range c {
  20. res[i] = &pasturePb.ConfigOptionsList{
  21. Value: int32(d.Id),
  22. Label: d.Name,
  23. Disabled: true,
  24. }
  25. }
  26. return res
  27. }
  28. func (c ConfigBarnTypeSlice) ToPB() []*pasturePb.SearchBaseConfigList {
  29. res := make([]*pasturePb.SearchBaseConfigList, len(c))
  30. for i, d := range c {
  31. res[i] = &pasturePb.SearchBaseConfigList{
  32. Id: int32(d.Id),
  33. Name: d.Name,
  34. Remarks: d.Remarks,
  35. IsShow: d.IsShow,
  36. CreatedAt: int32(d.CreatedAt),
  37. UpdatedAt: int32(d.UpdatedAt),
  38. }
  39. }
  40. return res
  41. }