1234567891011121314151617181920212223 |
- 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
- }
|