@be-link/cs-cli-nodejs 0.1.90 → 0.1.91
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.
|
@@ -16,6 +16,8 @@ export declare namespace ItemTourMaterial {
|
|
|
16
16
|
isEnable: boolean;
|
|
17
17
|
/** 材料项 */
|
|
18
18
|
items: TourMaterialItem[];
|
|
19
|
+
/** 列表2 */
|
|
20
|
+
items2?: TourMaterialItem[];
|
|
19
21
|
}
|
|
20
22
|
interface TourMaterialItem {
|
|
21
23
|
/** 材料项id */
|
|
@@ -43,16 +45,10 @@ export declare namespace ItemTourMaterial {
|
|
|
43
45
|
/** 是否可用 */
|
|
44
46
|
isEnable?: boolean;
|
|
45
47
|
}
|
|
46
|
-
|
|
47
|
-
/** 列表2 */
|
|
48
|
-
items2?: Entity.TourMaterialItem[];
|
|
49
|
-
}
|
|
48
|
+
type IUpdateItemTourMateria = Entity.TourMaterial;
|
|
50
49
|
}
|
|
51
50
|
namespace Response {
|
|
52
|
-
|
|
53
|
-
/** 列表2 */
|
|
54
|
-
items2?: Entity.TourMaterialItem[];
|
|
55
|
-
}
|
|
51
|
+
type IGetItemTourMaterial = Entity.TourMaterial;
|
|
56
52
|
}
|
|
57
53
|
interface Controller {
|
|
58
54
|
/** 获取商品出行材料 */
|