lzh-common 0.0.597 → 0.0.598
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.
- package/dist/collection_account_stats_daily/index.d.ts +1 -0
- package/dist/collection_account_stats_daily/index.d.ts.map +1 -1
- package/dist/collection_account_stats_daily/index.js +1 -0
- package/dist/collection_account_stats_daily/system.d.ts +26 -0
- package/dist/collection_account_stats_daily/system.d.ts.map +1 -0
- package/dist/collection_account_stats_daily/system.js +4 -0
- package/dist/merchant_wechat_pay/index.d.ts +1 -0
- package/dist/merchant_wechat_pay/index.d.ts.map +1 -1
- package/dist/merchant_wechat_pay/index.js +1 -0
- package/dist/merchant_wechat_pay/super.d.ts +20 -47
- package/dist/merchant_wechat_pay/super.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/collection_account_stats_daily/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/collection_account_stats_daily/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @description 收款账户日统计相关类型定义(系统端)
|
|
3
|
+
*/
|
|
4
|
+
import { CollectionPaymentMethodEnum } from "../enum.js";
|
|
5
|
+
export type ICollectionAccountStatsDailyReq = {
|
|
6
|
+
/** 统计开始日期,格式:YYYY-MM-DD */
|
|
7
|
+
stat_date_start?: string;
|
|
8
|
+
/** 统计结束日期,格式:YYYY-MM-DD */
|
|
9
|
+
stat_date_end?: string;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* 返回参数:收款账户每日收款统计
|
|
13
|
+
**/
|
|
14
|
+
export type ICollectionAccountStatsDailyRes = {
|
|
15
|
+
/** 日期,格式:YYYY-MM-DD */
|
|
16
|
+
date: string;
|
|
17
|
+
/** 收款账户配置ID */
|
|
18
|
+
collection_account_config_id: number;
|
|
19
|
+
/** 账户名称 */
|
|
20
|
+
account_name: string;
|
|
21
|
+
/** 收款方式 */
|
|
22
|
+
payment_method: CollectionPaymentMethodEnum;
|
|
23
|
+
/** 当天收款金额 */
|
|
24
|
+
collection_amount: string;
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=system.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"system.d.ts","sourceRoot":"","sources":["../../src/collection_account_stats_daily/system.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,2BAA2B,EAAE,MAAM,YAAY,CAAC;AAEzD,MAAM,MAAM,+BAA+B,GAAG;IAC5C,2BAA2B;IAC3B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,2BAA2B;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAA;AAED;;IAEI;AACJ,MAAM,MAAM,+BAA+B,GAAG;IAC5C,uBAAuB;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,eAAe;IACf,4BAA4B,EAAE,MAAM,CAAC;IACrC,WAAW;IACX,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW;IACX,cAAc,EAAE,2BAA2B,CAAC;IAC5C,aAAa;IACb,iBAAiB,EAAE,MAAM,CAAC;CAC3B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/merchant_wechat_pay/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/merchant_wechat_pay/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA"}
|
|
@@ -1,52 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
export type
|
|
16
|
-
/** 统计日期,格式:YYYY-MM-DD */
|
|
17
|
-
date: string;
|
|
18
|
-
/** 商家ID */
|
|
19
|
-
merchant_wechat_pay_id: number;
|
|
1
|
+
/** 租户绑定信息 */
|
|
2
|
+
export interface IMerchantWechatPayTenantBinding {
|
|
3
|
+
/** 租户域名 */
|
|
4
|
+
tenant_domain: string;
|
|
5
|
+
/** 配置记录ID */
|
|
6
|
+
id: number;
|
|
7
|
+
/** 创建时间 */
|
|
8
|
+
create_time: string;
|
|
9
|
+
/** 更新时间 */
|
|
10
|
+
update_time: string;
|
|
11
|
+
/** 是否是该租户当前使用的配置 */
|
|
12
|
+
is_current: boolean;
|
|
13
|
+
}
|
|
14
|
+
/** 返回参数: 跨租户微信商家绑定列表 */
|
|
15
|
+
export type IMerchantWechatPayBindingListRes = {
|
|
20
16
|
/** 微信支付商户号 */
|
|
21
17
|
mch_id: string;
|
|
22
18
|
/** 商户名称 */
|
|
23
19
|
mch_name: string;
|
|
24
|
-
/**
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
detail: {
|
|
30
|
-
/** 充值金额 */
|
|
31
|
-
recharge_amount: string;
|
|
32
|
-
/** 充值笔数 */
|
|
33
|
-
recharge_count: number;
|
|
34
|
-
/** 订单金额 */
|
|
35
|
-
order_amount: string;
|
|
36
|
-
/** 订单笔数 */
|
|
37
|
-
order_count: number;
|
|
38
|
-
/** 保证金金额 */
|
|
39
|
-
deposit_amount: string;
|
|
40
|
-
/** 保证金笔数 */
|
|
41
|
-
deposit_count: number;
|
|
42
|
-
/** 会费金额 */
|
|
43
|
-
dues_amount: string;
|
|
44
|
-
/** 会费笔数 */
|
|
45
|
-
dues_count: number;
|
|
46
|
-
/** 打赏金额 */
|
|
47
|
-
tip_amount: string;
|
|
48
|
-
/** 打赏笔数 */
|
|
49
|
-
tip_count: number;
|
|
50
|
-
};
|
|
51
|
-
};
|
|
20
|
+
/** 商户简称 */
|
|
21
|
+
mch_short_name: string;
|
|
22
|
+
/** 绑定的租户列表 */
|
|
23
|
+
tenants: IMerchantWechatPayTenantBinding[];
|
|
24
|
+
}[];
|
|
52
25
|
//# sourceMappingURL=super.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"super.d.ts","sourceRoot":"","sources":["../../src/merchant_wechat_pay/super.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"super.d.ts","sourceRoot":"","sources":["../../src/merchant_wechat_pay/super.ts"],"names":[],"mappings":"AAEA,aAAa;AACb,MAAM,WAAW,+BAA+B;IAC9C,WAAW;IACX,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa;IACb,EAAE,EAAE,MAAM,CAAC;IACX,WAAW;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,oBAAoB;IACpB,UAAU,EAAE,OAAO,CAAC;CACrB;AAED,wBAAwB;AACxB,MAAM,MAAM,gCAAgC,GAAG;IAC7C,cAAc;IACd,MAAM,EAAE,MAAM,CAAC;IACf,WAAW;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW;IACX,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc;IACd,OAAO,EAAE,+BAA+B,EAAE,CAAC;CAC5C,EAAE,CAAC"}
|