|
@@ -0,0 +1,23 @@
|
|
|
+package api
|
|
|
+
|
|
|
+import (
|
|
|
+ "github.com/gin-gonic/gin"
|
|
|
+)
|
|
|
+
|
|
|
+// 增加stage
|
|
|
+// planId packId compentId
|
|
|
+// 计划价格 组件价格
|
|
|
+func AddStage(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+
|
|
|
+ return result, err
|
|
|
+}
|
|
|
+
|
|
|
+func DeleteStage(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+
|
|
|
+ return result, err
|
|
|
+}
|
|
|
+
|
|
|
+func UpdateStage(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+
|
|
|
+ return result, err
|
|
|
+}
|