feat: 安全入口功能实现

This commit is contained in:
ssongliu
2022-09-20 14:55:08 +08:00
committed by ssongliu
parent e1bf00cb34
commit 389e268407
27 changed files with 222 additions and 327 deletions
-18
View File
@@ -1,18 +0,0 @@
import { CommonModel, ReqPage } from '.';
export namespace User {
export interface User extends CommonModel {
name: string;
email: string;
password: string;
}
export interface UserCreate {
username: string;
email: string;
}
export interface ReqGetUserParams extends ReqPage {
info?: string;
email?: string;
}
}