2026-03-03 11:03:56 +08:00
|
|
|
/**
|
|
|
|
|
* Generated by orval v7.13.2 🍺
|
|
|
|
|
* Do not edit manually.
|
|
|
|
|
* Reading Platform API
|
|
|
|
|
* Reading Platform Backend Service API Documentation
|
|
|
|
|
* OpenAPI spec version: 1.0.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2026-03-09 18:04:29 +08:00
|
|
|
* 登录请求
|
2026-03-03 11:03:56 +08:00
|
|
|
*/
|
|
|
|
|
export interface LoginRequest {
|
2026-03-09 18:04:29 +08:00
|
|
|
/** 用户名 */
|
2026-03-03 11:03:56 +08:00
|
|
|
username: string;
|
2026-03-09 18:04:29 +08:00
|
|
|
/** 密码 */
|
2026-03-03 11:03:56 +08:00
|
|
|
password: string;
|
2026-03-09 18:04:29 +08:00
|
|
|
/** 登录角色 */
|
2026-03-03 11:03:56 +08:00
|
|
|
role?: string;
|
|
|
|
|
}
|