lzh-common 0.0.408 → 0.0.409
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/order_extensions/base.d.ts +30 -0
- package/dist/order_extensions/base.d.ts.map +1 -0
- package/dist/order_extensions/base.js +1 -0
- package/dist/order_extensions/index.d.ts +2 -0
- package/dist/order_extensions/index.d.ts.map +1 -0
- package/dist/order_extensions/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { MoneyDECIMALTs } from "../base.js";
|
|
2
|
+
import { IOrderInfoDB } from "../index.js";
|
|
3
|
+
/** 订单财务表数据库字段 */
|
|
4
|
+
export interface IOrderExtensionsDB {
|
|
5
|
+
/** 主键ID */
|
|
6
|
+
id: number;
|
|
7
|
+
/** 订单ID */
|
|
8
|
+
order_id: IOrderInfoDB['id'];
|
|
9
|
+
/** 订单的总支付金额 */
|
|
10
|
+
paid_amount: MoneyDECIMALTs;
|
|
11
|
+
/** 增值服务总价格 */
|
|
12
|
+
value_added_services_total_price: MoneyDECIMALTs | null;
|
|
13
|
+
/** 预计打手抽成金额 */
|
|
14
|
+
expected_assignee_commission: MoneyDECIMALTs | null;
|
|
15
|
+
/** 预计平台抽成金额 */
|
|
16
|
+
expected_platform_commission: MoneyDECIMALTs | null;
|
|
17
|
+
/** 关联的商品平台抽成比例(%) */
|
|
18
|
+
related_goods_service_charge: number | null;
|
|
19
|
+
/** 会员折扣比例(如0.95表示95折) */
|
|
20
|
+
membership_discount: number | null;
|
|
21
|
+
/** 打手余额购买折扣比例(如0.98表示98折) */
|
|
22
|
+
assignee_balance_purchase_discount: number | null;
|
|
23
|
+
/** 创建时间 */
|
|
24
|
+
created_time: string;
|
|
25
|
+
/** 更新时间 */
|
|
26
|
+
updated_time: string;
|
|
27
|
+
/** 租户域名 */
|
|
28
|
+
tenant_domain: string;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=base.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../src/order_extensions/base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAM3C,iBAAiB;AACjB,MAAM,WAAW,kBAAkB;IACjC,WAAW;IACX,EAAE,EAAE,MAAM,CAAC;IACX,WAAW;IACX,QAAQ,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;IAC7B,eAAe;IACf,WAAW,EAAE,cAAc,CAAC;IAC5B,cAAc;IACd,gCAAgC,EAAE,cAAc,GAAG,IAAI,CAAC;IACxD,eAAe;IACf,4BAA4B,EAAE,cAAc,GAAG,IAAI,CAAC;IACpD,eAAe;IACf,4BAA4B,EAAE,cAAc,GAAG,IAAI,CAAC;IACpD,qBAAqB;IACrB,4BAA4B,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5C,yBAAyB;IACzB,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,6BAA6B;IAC7B,kCAAkC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClD,WAAW;IACX,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW;IACX,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW;IACX,aAAa,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/order_extensions/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./base.js";
|