dept.go 195 B

1234567891011
  1. package response
  2. import "dy-admin/internal/pcmserver/sys/model"
  3. type DeptResponse struct {
  4. Dept model.Dept `json:"dept"`
  5. }
  6. type DeptListResponse struct {
  7. Depts []model.Dept `json:"depts"`
  8. }