MrShi
4 天以前 acf90ad8e6bea592124541324467360cef565ff5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { ICommonAPIParams } from '../../constant/types';
/**
 * 创建因公场景支付宝订单 请求参数定义
 * @apiName createPayOrder
 */
export interface IUnionCreatePayOrderParams extends ICommonAPIParams {
    bizScene: string;
    corpId: string;
    processInstanceId: string;
    journeyBizNo: string;
    orderList: {
        outBizNo: string;
        merchantId: string;
        amount: string;
        title: string;
        goodsName: string;
        remark: string;
    }[];
    controlStandard: string;
}
/**
 * 创建因公场景支付宝订单 返回结果定义
 * @apiName createPayOrder
 */
export interface IUnionCreatePayOrderResult {
    code: string;
    reason: string;
    reasonRemark: string;
    orderResultList: {
        outBizNo: string;
        enterprise_pay_info: string;
        assignJointAccountId: string;
        enterprisePayAmount: string;
    }[];
}
/**
 * 创建因公场景支付宝订单
 * @apiName createPayOrder
 */
export declare function createPayOrder$(params: IUnionCreatePayOrderParams): Promise<IUnionCreatePayOrderResult>;
export default createPayOrder$;