type.ts 426 B

1234567891011121314151617181920
  1. import { PaginationRequest, PaginationResponse } from '@/types/common/type';
  2. export type DeptPageRequest = PaginationRequest & {
  3. queryStr: string;
  4. }
  5. export interface DeptListItem {
  6. /*用户组id */
  7. id: number;
  8. /*用户组名称 */
  9. name: string;
  10. /*分组描述 */
  11. description: string;
  12. /*人数 */
  13. total: number;
  14. /*操作人姓名 */
  15. operatorName: string;
  16. /*操作时间 */
  17. operationTime: string;
  18. }