| 1234567891011121314151617181920 |
- import { PaginationRequest, PaginationResponse } from '@/types/common/type';
- export type DeptPageRequest = PaginationRequest & {
- queryStr: string;
- }
- export interface DeptListItem {
- /*用户组id */
- id: number;
- /*用户组名称 */
- name: string;
- /*分组描述 */
- description: string;
- /*人数 */
- total: number;
- /*操作人姓名 */
- operatorName: string;
- /*操作时间 */
- operationTime: string;
- }
|