@carsayo/types 1.1.891978 → 1.1.891980
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReqSellMyCarId } from "./dto";
|
|
2
|
-
import {
|
|
2
|
+
import { SellMyCarOrderAgencyCashflowStatus } from "./type";
|
|
3
3
|
/** 관리자 > 진단사 배정 요청 DTO */
|
|
4
4
|
export interface ReqSetMyCarInspector extends ReqSellMyCarId {
|
|
5
5
|
/** 진단사 이름 */
|
|
@@ -57,5 +57,23 @@ export interface ReqSetMyCarConfirmAuction extends ReqSellMyCarId {
|
|
|
57
57
|
}
|
|
58
58
|
/** 관리자 > 탁송 > 현금흐름 업데이트 */
|
|
59
59
|
export interface ReqSetMyCarCashflow extends ReqSellMyCarId {
|
|
60
|
-
data:
|
|
60
|
+
data: {
|
|
61
|
+
amount?: number;
|
|
62
|
+
status?: SellMyCarOrderAgencyCashflowStatus;
|
|
63
|
+
/** 입금 정보 */
|
|
64
|
+
deposit?: {
|
|
65
|
+
/** 은행코드 (예: 004 - KB국민은행 등) */
|
|
66
|
+
bank_code?: string;
|
|
67
|
+
/** 예금주명 */
|
|
68
|
+
account_holder_name?: string;
|
|
69
|
+
/** 계좌번호 */
|
|
70
|
+
account_number?: string;
|
|
71
|
+
/** 입금기한 */
|
|
72
|
+
deposit_deadline?: Date;
|
|
73
|
+
};
|
|
74
|
+
/** 입금 신청 정보
|
|
75
|
+
* @note true일 경우 입금 신청을 보낸 것으로 DB에 기록합니다
|
|
76
|
+
*/
|
|
77
|
+
deposit_request?: boolean;
|
|
78
|
+
};
|
|
61
79
|
}
|