面包店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
223 B

  1. package order
  2. import (
  3. "applet/app/admin/svc/order"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func GoodsPayCalcAmount(c *gin.Context) {
  7. order.GoodsPayCalcAmount(c)
  8. }
  9. func GoodsPayCreate(c *gin.Context) {
  10. order.GoodsPayCreate(c)
  11. }