@hugo.ye/common 1.0.49 → 1.0.50
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.
|
@@ -6,8 +6,8 @@ export declare class OrderEntity extends AbstractEntity<OrderEntity> {
|
|
|
6
6
|
service: string;
|
|
7
7
|
country: string;
|
|
8
8
|
totalAmount: number;
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
officialFee: number;
|
|
10
|
+
localAttorneyFee: number;
|
|
11
11
|
seviceFee: number;
|
|
12
12
|
currency: string;
|
|
13
13
|
settleAmount: number;
|
|
@@ -16,8 +16,8 @@ let OrderEntity = class OrderEntity extends AbstractEntity {
|
|
|
16
16
|
service; // 服务类别:商品注册、发明专利、实用新型、外观专利、年金管理、版权登记
|
|
17
17
|
country; // 国家
|
|
18
18
|
totalAmount; // 总金额
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
officialFee; // 官方费用
|
|
20
|
+
localAttorneyFee; // 本地律师费
|
|
21
21
|
seviceFee; // Inipa服务费
|
|
22
22
|
currency; // 货币
|
|
23
23
|
settleAmount; // 结算金额
|
|
@@ -76,12 +76,12 @@ __decorate([
|
|
|
76
76
|
Column({ type: 'decimal', precision: 10, scale: 3 }),
|
|
77
77
|
Field(),
|
|
78
78
|
__metadata("design:type", Number)
|
|
79
|
-
], OrderEntity.prototype, "
|
|
79
|
+
], OrderEntity.prototype, "officialFee", void 0);
|
|
80
80
|
__decorate([
|
|
81
81
|
Column({ type: 'decimal', precision: 10, scale: 3 }),
|
|
82
82
|
Field(),
|
|
83
83
|
__metadata("design:type", Number)
|
|
84
|
-
], OrderEntity.prototype, "
|
|
84
|
+
], OrderEntity.prototype, "localAttorneyFee", void 0);
|
|
85
85
|
__decorate([
|
|
86
86
|
Column({ type: 'decimal', precision: 10, scale: 3 }),
|
|
87
87
|
Field(),
|