system_dept.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package model
  2. import (
  3. "time"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. type SystemDept struct {
  7. Id int64 `json:"id"`
  8. Name string `json:"name"`
  9. Remarks string `json:"remarks"`
  10. DeptType pasturePb.Depth_Kind `json:"dept_type"`
  11. LeaderId int64 `json:"leader_id"`
  12. ParentId int64 `json:"parent_id"`
  13. Sort int32 `json:"sort"`
  14. IsShow pasturePb.IsShow_Kind `json:"is_show"`
  15. IsDelete pasturePb.IsShow_Kind `json:"is_delete"`
  16. CreatedAt int64 `json:"created_at"`
  17. UpdatedAt int64 `json:"updated_at"`
  18. }
  19. func (s *SystemDept) TableName() string {
  20. return "system_dept"
  21. }
  22. type SystemDeptSlice []*SystemDept
  23. func (s SystemDeptSlice) ToPB() []*pasturePb.SearchDeptRequest {
  24. res := make([]*pasturePb.SearchDeptRequest, len(s))
  25. for i, d := range s {
  26. res[i] = &pasturePb.SearchDeptRequest{
  27. Id: int32(d.Id),
  28. Name: d.Name,
  29. Remarks: d.Remarks,
  30. ParentId: int32(d.ParentId),
  31. DepthType: d.DeptType,
  32. LeaderId: int32(d.LeaderId),
  33. Sort: d.Sort,
  34. IsShow: d.IsShow,
  35. IsDelete: d.IsDelete,
  36. CreatedAtFormat: time.Unix(d.CreatedAt, 0).Format(LayoutTime),
  37. UpdatedAtFormat: time.Unix(d.UpdatedAt, 0).Format(LayoutTime),
  38. }
  39. }
  40. return res
  41. }