|
|
@@ -68,6 +68,25 @@ export enum LockInfo {
|
|
|
BUY = 2, // 销售
|
|
|
}
|
|
|
|
|
|
+export interface IConsumeAmt {
|
|
|
+ region: string;
|
|
|
+ taxModel: number;
|
|
|
+ consumeAmt: {
|
|
|
+ dataCode: string;
|
|
|
+ dataName: string;
|
|
|
+ refPrice: string;
|
|
|
+ };
|
|
|
+}
|
|
|
+
|
|
|
+export interface ISubPrice {
|
|
|
+ region: string;
|
|
|
+ taxModel: number;
|
|
|
+ price: {
|
|
|
+ dataCode: string;
|
|
|
+ dataName: string;
|
|
|
+ };
|
|
|
+}
|
|
|
+
|
|
|
export interface ICompilation {
|
|
|
ID: string;
|
|
|
name: string;
|
|
|
@@ -82,7 +101,8 @@ export interface ICompilation {
|
|
|
categoryID: string;
|
|
|
example: number[];
|
|
|
adProjects: number[];
|
|
|
-
|
|
|
+ consumeAmtProperties?: IConsumeAmt[]; // 多组成物时的消耗量属性来源
|
|
|
+ priceProperties?: ISubPrice[]; // 多单价时的价格属性来源
|
|
|
// 附加
|
|
|
version: versionType; // 版本
|
|
|
versionText: string; // 版本对应的显示文字:免费版,学习版,专业版
|