오류 수정
This commit is contained in:
12
src/entities/additional-service/model/payout/constant.ts
Normal file
12
src/entities/additional-service/model/payout/constant.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { PayoutSearchCl, PayoutDisbursementStatus } from './types';
|
||||
|
||||
export const PayoutSearchClBtnGroup = [
|
||||
{name: '요청일자', value: PayoutSearchCl.REQUEST_DATE },
|
||||
{name: '지급일자', value: PayoutSearchCl.PROXY_DATE }
|
||||
];
|
||||
export const PayoutDisbursementStatusBtnGroup = [
|
||||
{name: '전체', value: PayoutDisbursementStatus.ALL},
|
||||
{name: '요청', value: PayoutDisbursementStatus.REQUEST},
|
||||
{name: '성공', value: PayoutDisbursementStatus.SUCCESS},
|
||||
{name: '실패', value: PayoutDisbursementStatus.FAIL},
|
||||
];
|
||||
@@ -23,8 +23,8 @@ export interface ExtensionPayoutListParams {
|
||||
fromDate: string;
|
||||
toDate: string;
|
||||
disbursementStatus: PayoutDisbursementStatus;
|
||||
minAmount: number;
|
||||
maxAmount: number;
|
||||
minAmount?: number | string;
|
||||
maxAmount?: number | string;
|
||||
page?: DefaultRequestPagination;
|
||||
};
|
||||
export interface ExtensionPayoutListResponse extends DefaulResponsePagination{
|
||||
|
||||
Reference in New Issue
Block a user