1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package model
- import (
- "time"
- pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
- )
- type SystemDept struct {
- Id int64 `json:"id"`
- Name string `json:"name"`
- Remarks string `json:"remarks"`
- DeptType pasturePb.Depth_Kind `json:"dept_type"`
- LeaderId int64 `json:"leader_id"`
- ParentId int64 `json:"parent_id"`
- Sort int32 `json:"sort"`
- IsShow pasturePb.IsShow_Kind `json:"is_show"`
- IsDelete pasturePb.IsShow_Kind `json:"is_delete"`
- CreatedAt int64 `json:"created_at"`
- UpdatedAt int64 `json:"updated_at"`
- }
- func (s *SystemDept) TableName() string {
- return "system_dept"
- }
- type SystemDeptSlice []*SystemDept
- func (s SystemDeptSlice) ToPB() []*pasturePb.SearchDeptRequest {
- res := make([]*pasturePb.SearchDeptRequest, len(s))
- for i, d := range s {
- res[i] = &pasturePb.SearchDeptRequest{
- Id: int32(d.Id),
- Name: d.Name,
- Remarks: d.Remarks,
- ParentId: int32(d.ParentId),
- DepthType: d.DeptType,
- LeaderId: int32(d.LeaderId),
- Sort: d.Sort,
- IsShow: d.IsShow,
- IsDelete: d.IsDelete,
- CreatedAtFormat: time.Unix(d.CreatedAt, 0).Format(LayoutTime),
- UpdatedAtFormat: time.Unix(d.UpdatedAt, 0).Format(LayoutTime),
- }
- }
- return res
- }
|