admin-vben/src/api/base/model/loginModel.ts

10 lines
150 B
TypeScript

export type UserLoginVO = {
username: string;
password: string;
captchaVerification: string;
};
export type TentantNameVO = {
id: number;
};