| | |
| | | }); |
| | | } |
| | | |
| | | /** 获取我的户号列表 POST /api/LifePay/GetUserAccountList */ |
| | | async getUserAccountList(body: QueryUserAccountListInput, options?: RequestConfig) { |
| | | return this.request<UserAccountListOutputPageOutput>('/api/LifePay/GetUserAccountList', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 添加或修改我的户号 POST /api/LifePay/AddUpdateUserAccount */ |
| | | async addUpdateUserAccount(body: AddUpdateUserAccountInput, options?: RequestConfig) { |
| | | return this.request<number>('/api/LifePay/AddUpdateUserAccount', { |
| | |
| | | async getGasParValue(options?: RequestConfig) { |
| | | return this.request<GasParValueResponse>('/api/LifePay/GetGasParValue', { |
| | | method: 'GET', |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 用户发起生活缴费退款 POST /api/LifePay/RefundUserLifePayOrder */ |
| | | async refundUserLifePayOrder(body: RefundUserLifePayOrderInput, options?: RequestConfig) { |
| | | return this.request<number>('/api/LifePay/RefundUserLifePayOrder', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | |
| | | rate?: number; |
| | | comments?: string; |
| | | } |
| | | |
| | | export interface RefundUserLifePayOrderInput { |
| | | id?: string; |
| | | /** 用户Id */ |
| | | userId?: string; |
| | | refundApplyRemark?: string; |
| | | } |
| | | |
| | | export interface QueryUserAccountListInput { |
| | | pageModel?: Pagination; |
| | | /** 用户Id */ |
| | | userId?: string; |
| | | lifePayOrderType?: LifeRechargeConstants.LifePayOrderTypeEnum; |
| | | } |
| | | |
| | | export interface UserAccountListOutputPageOutput { |
| | | pageModel?: Pagination; |
| | | objectData?: any; |
| | | data?: UserAccountListOutput[]; |
| | | } |