bmc-common-resource 1.1.122 → 1.1.123

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.
@@ -216,6 +216,28 @@ export default class QuotationItem {
216
216
  * @example 85 表示85折
217
217
  */
218
218
  itemDiscount: number;
219
+ /**
220
+ * 税率
221
+ * @default 0
222
+ * @min 0
223
+ * @max 100
224
+ */
225
+ taxRate: number;
226
+ /**
227
+ * 税金
228
+ */
229
+ taxAmount: number;
230
+ /**
231
+ * 管理费率
232
+ * @default 0
233
+ * @min 0
234
+ * @max 100
235
+ */
236
+ managementFeeRate: number;
237
+ /**
238
+ * 管理费
239
+ */
240
+ managementFee: number;
219
241
  /**
220
242
  * 产品预览图集合(最多6张)
221
243
  * @remarks 按序存储,首张作为主图
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmc-common-resource",
3
- "version": "1.1.122",
3
+ "version": "1.1.123",
4
4
  "description": "通用枚举、常量和资源的npm包",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",