부가서비스

- SMS 결제통보 엑셀 다운로드 API 추가, 재발송 버튼 클릭시 Bottom Sheet 출현
This commit is contained in:
HyeonJongKim
2025-09-24 17:32:25 +09:00
parent 69bafcd2c5
commit 65a519f957
9 changed files with 193 additions and 20 deletions

View File

@@ -1,5 +1,5 @@
import { DefaulResponsePagination, DefaultRequestPagination } from '@/entities/common/model/types';
import { ExtensionRequestParams, ListItemProps } from '../types';
import { ExtensionRequestParams, FilterProps, ListItemProps } from '../types';
export enum SmsType {
ALL = "ALL",
@@ -23,6 +23,22 @@ export interface SmsPaymentListItem {
export interface SmsPaymentListProps {
listItems: Record<string, Array<ListItemProps>>;
mid: string;
onResendClick?: () => void;
}
export interface SmsPaymentFilterProps extends FilterProps {
mid: string;
searchCl: SmsPaymentSearchType;
searchValue: string;
fromDate: string;
toDate: string;
smsCl: SmsType;
setMid: (mid: string) => void;
setSearchCl: (searchCl: SmsPaymentSearchType) => void;
setSearchValue: (searchValue: string) => void;
setFromDate: (fromDate: string) => void;
setToDate: (toDate: string) => void;
setSmsCl: (smsCl: SmsType) => void;
}
export interface ExtensionSmsPaymentListParams extends ExtensionRequestParams {

View File

@@ -397,7 +397,8 @@ export interface ListItemProps extends
FundAccountResultContentItem,
ArsListContent, AlimtalkListContent {
additionalServiceCategory?: AdditionalServiceCategory;
mid?: string
mid?: string;
onResendClick?: () => void;
}
export interface ListDateGroupProps {
@@ -405,6 +406,7 @@ export interface ListDateGroupProps {
date?: string;
items?: Array<ListItemProps>;
mid?: string;
onResendClick?: () => void;
}
export interface AdditionalServiceListProps {