Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- package hdl
-
- import (
- "applet/app/svc"
- "github.com/gin-gonic/gin"
- )
-
- func StoreOrderList(c *gin.Context) {
- svc.StoreOrderList(c)
- }
- func StoreOrderCate(c *gin.Context) {
- svc.StoreOrderCate(c)
- }
- func StoreOrderDetail(c *gin.Context) {
- svc.StoreOrderDetail(c)
- }
- func StoreOrderConfirm(c *gin.Context) {
- svc.StoreOrderConfirm(c)
- }
|