| | |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取当前展示中的公告 POST /api/LifePayAnnouncement/GetShowingLifePayAnnouncement */ |
| | | async getShowingLifePayAnnouncement( |
| | | body: GetShowingLifePayAnnouncementInput, |
| | | options?: RequestConfig |
| | | ) { |
| | | return this.request<CreateEditLifePayAnnouncementOutput>( |
| | | '/api/LifePayAnnouncement/GetShowingLifePayAnnouncement', |
| | | { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | } |
| | | ); |
| | | } |
| | | } |
| | | |
| | | export interface PhoneMesssageCodeLoginInput { |
| | |
| | | /** IdNumber */ |
| | | idNumber?: string; |
| | | } |
| | | |
| | | export interface GetShowingLifePayAnnouncementInput { |
| | | announcementType?: LifeRechargeConstants.AnnouncementTypeEnum; |
| | | } |
| | | |
| | | export interface CreateEditLifePayAnnouncementOutput { |
| | | id?: string; |
| | | announcementType: LifeRechargeConstants.AnnouncementTypeEnum; |
| | | /** 生效日期 */ |
| | | startTime: string; |
| | | /** 截止日期 */ |
| | | endTime: string; |
| | | /** 公告内容 */ |
| | | announcementContent: string; |
| | | creationTime?: string; |
| | | status?: LifeRechargeConstants.AnnouncementStatusEnum; |
| | | } |