dept.go 145 B

12345678
  1. package controls
  2. // 部门控件
  3. type DeptInfo struct {
  4. Type string `json:"type"`
  5. ID string `json:"subjectId"`
  6. Name string `json:"name"`
  7. }