You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
402 B
16 lines
402 B
/** |
|
* @program: kicc-ui |
|
* @description: 用户实体类 |
|
* 类型定义 |
|
* @author: wangxiang4 |
|
* @create: 2022/4/8 |
|
*/ |
|
import type { R } from '/#/axios'; |
|
import type { Page } from '/@/api/common/data/entity'; |
|
import type { User } from '/@/api/platform/core/entity/user'; |
|
|
|
/** 用户查询参数 */ |
|
export type UserParams = Page & User; |
|
|
|
/** 用户响应对象 */ |
|
export type UserResult = R<User[]>;
|
|
|