system_role.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package model
  2. import (
  3. "time"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. type SystemRole struct {
  7. Id int64 `json:"id,omitempty"`
  8. Name string `json:"name,omitempty"`
  9. Remarks string `json:"remarks,omitempty"`
  10. IsShow pasturePb.IsShow_Kind `json:"is_show,omitempty"`
  11. IsDelete pasturePb.IsShow_Kind `json:"is_delete,omitempty"`
  12. CreatedAt int64 `json:"created_at,omitempty"`
  13. UpdatedAt int64 `json:"updated_at,omitempty"`
  14. }
  15. func (s *SystemRole) TableName() string {
  16. return "system_role"
  17. }
  18. const (
  19. LayoutTime = "2006-01-02 15:04:05"
  20. LayoutDate = "20060102"
  21. LayoutDate2 = "2006-01-02"
  22. LayoutMonth = "2006-01"
  23. LayoutHour = "2006-01-02 15"
  24. LayoutYear = "2006"
  25. )
  26. type SystemRoleSlice []*SystemRole
  27. func (s SystemRoleSlice) ToPB() []*pasturePb.SearchRoleRequest {
  28. res := make([]*pasturePb.SearchRoleRequest, len(s))
  29. for i, v := range s {
  30. res[i] = &pasturePb.SearchRoleRequest{
  31. Id: int32(v.Id),
  32. Name: v.Name,
  33. Remarks: v.Remarks,
  34. IsShow: v.IsShow,
  35. CreatedAtFormat: time.Unix(v.CreatedAt, 0).Format(LayoutTime),
  36. UpdatedAtFormat: time.Unix(v.UpdatedAt, 0).Format(LayoutTime),
  37. }
  38. }
  39. return res
  40. }