| | |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 根据用户ID获取用户是否为后台管理员 POST /api/Account/LifePayUserMesssageByIduser */ |
| | | async lifePayUserMesssageByIduser( |
| | | body: LifePayUserMesssageByIduserInput, |
| | | options?: RequestConfig |
| | | ) { |
| | | return this.request<LifePayPhoneMesssageCodeLoginOutput>( |
| | | '/api/Account/LifePayUserMesssageByIduser', |
| | | { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | } |
| | | ); |
| | | } |
| | | } |
| | | |
| | | export interface PhoneMesssageCodeLoginInput { |
| | |
| | | /** 是否是后台用户 */ |
| | | isBackClientUser?: boolean; |
| | | /** 渠道号 */ |
| | | channlesNum?: string[]; |
| | | channlesNum?: ChannelOutput[]; |
| | | } |
| | | |
| | | export interface ChannelOutput { |
| | | name?: string; |
| | | channlesNum?: string; |
| | | } |
| | | |
| | | export interface LifePayUserMesssageByIduserInput { |
| | | pageModel?: Pagination; |
| | | checkChannelId?: string; |
| | | /** 用户编号 */ |
| | | id?: string; |
| | | } |