/** * 注册请求参数 */ export class RegisterRequest { mobile: string; password: string; constructor(mobile: string, password: string) { this.mobile = mobile; this.password = password; } }