stages.go 420 B

1234567891011121314151617181920212223
  1. package api
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. // 增加stage
  6. // planId packId compentId
  7. // 计划价格 组件价格
  8. func AddStage(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  9. return result, err
  10. }
  11. func DeleteStage(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  12. return result, err
  13. }
  14. func UpdateStage(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  15. return result, err
  16. }