ruoyi-plus-vben5/apps/backend-mock/src/models/dto/user.dto.ts

10 lines
144 B
TypeScript

class CreateUserDto {
id: number;
password: string;
realName: string;
roles: string[];
username: string;
}
export { CreateUserDto };