2021-06-30 02:12:05 +00:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
|
|
|
"mh-server/controller"
|
|
|
|
"mh-server/lib/auth"
|
|
|
|
|
|
|
|
//"mh-server/lib/auth"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func ConfigAppRouter(r gin.IRouter) {
|
|
|
|
|
|
|
|
r.Use(CORSMiddleware)
|
|
|
|
r.Use(WrapHandle)
|
|
|
|
r.Use(gin.Recovery())
|
|
|
|
|
|
|
|
r.GET("wx_msg", controller.WxMsg)
|
|
|
|
|
|
|
|
api := r.Group("/api/" + API_VERSION_V1)
|
2021-11-01 03:32:23 +00:00
|
|
|
{
|
|
|
|
// //if config.AppConfig.Env == "test" || config.AppConfig.Env == "dev" {
|
|
|
|
// // api.POST("test", controller.Test)
|
|
|
|
// // api.GET("test/:uid", controller.TestLogin)
|
|
|
|
// //}
|
|
|
|
//
|
|
|
|
// api.POST("is_check", controller.IsCheck) // 审核状态
|
|
|
|
// api.POST("share_img/list", controller.ShareImgList) // 分享图片
|
|
|
|
// api.GET("charge/notify", controller.MobileChargeNotify) // 话费多接口回调
|
|
|
|
// //api.POST("sys/config", controller.SysConfig) // 配置
|
|
|
|
// api.POST("step/config", controller.StepConfig) // 步数配置
|
|
|
|
// //api.POST("upload_user_info", controller.UploadUserInfo) // 上传用户信息
|
2022-11-26 08:52:05 +00:00
|
|
|
//api.POST("wxpay/notice", controller.PushWXPayNotice) // 微信推送支付通知
|
2022-12-19 02:51:22 +00:00
|
|
|
// TODO两边都改
|
|
|
|
api.GET("wxpay/notice", controller.HmPushWXPayNotice) // 河马推送支付通知
|
|
|
|
api.POST("wxpay/notice", controller.PushWXPayNotice) // 微信推送支付通知
|
2022-08-31 07:25:45 +00:00
|
|
|
api.POST("wxpay_refund/notice", controller.PushWXPayRefundNotice) // 微信推送支付退款通知
|
|
|
|
api.POST("aliyun/sts_token", controller.AliyunStsTokenGet) // 阿里云上传图片token
|
|
|
|
api.POST("auto_reply/focus", controller.AutoReplyFocusMsg) // 自动回复
|
|
|
|
api.GET("auto_reply/focus", controller.CustomerServiceMessageCheck) // 客服校验
|
|
|
|
|
2021-11-01 03:32:23 +00:00
|
|
|
// api.GET("wx_cs/message", controller.CustomerServiceMessageCheck) // 客服校验
|
|
|
|
// api.POST("wx_cs/message", controller.CustomerServiceMessage) // 客服
|
|
|
|
}
|
2021-06-30 02:12:05 +00:00
|
|
|
|
|
|
|
// 用户鉴权
|
|
|
|
authGroup := api.Group("auth")
|
|
|
|
{
|
|
|
|
authGroup.POST("login", controller.AuthLogin) // 登录
|
|
|
|
authGroup.POST("token/refresh", controller.TokenRefresh) // 刷新AccessToken
|
|
|
|
|
|
|
|
//authGroup.POST("login/app", controller.AuthLoginApp) // APP登录
|
|
|
|
//authGroup.POST("token/refresh/app", controller.TokenRefresh) // APP刷新Token
|
|
|
|
}
|
|
|
|
|
|
|
|
gameCard := api.Group("game_card")
|
|
|
|
{
|
|
|
|
gameCard.POST("game_type", controller.GameCardTypes) // 游戏标签
|
|
|
|
gameCard.POST("type/list", controller.GameCardTypeList) // 游戏类型列表
|
|
|
|
|
|
|
|
gameCard.Use(auth.UserAccessAuth)
|
2022-06-29 08:03:50 +00:00
|
|
|
gameCard.POST("info", controller.GameCardInfo) // 游戏卡详情
|
|
|
|
gameCard.POST("list", controller.GameCardList) // 游戏卡列表
|
|
|
|
gameCard.POST("banner", controller.HomeCarouselList) // 轮播图
|
2021-06-30 02:12:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
search := gameCard.Group("search")
|
|
|
|
{
|
|
|
|
search.POST("list", controller.GameCardSearch) // 游戏卡搜索列表
|
|
|
|
search.POST("hot", controller.GameCardHotSearch) // 游戏卡搜索列表
|
|
|
|
|
|
|
|
search.Use(auth.UserAccessAuth)
|
|
|
|
search.POST("history", controller.GameCardSearchHistory) // 游戏卡搜索历史
|
|
|
|
}
|
2021-11-01 03:32:23 +00:00
|
|
|
|
2021-06-30 02:12:05 +00:00
|
|
|
user := api.Group("user")
|
|
|
|
{
|
2022-04-21 09:03:33 +00:00
|
|
|
user.Use(auth.UserAccessAuth) //
|
2021-12-25 08:38:30 +00:00
|
|
|
user.POST("data", controller.UserData) // 用户数据
|
|
|
|
user.POST("user_info/upload", controller.UserInfoUpload) // 上传用户信息
|
|
|
|
user.POST("user_info/tel", controller.UserTel) // 获取用户手机号
|
|
|
|
user.POST("user_info/update", controller.UserInfoUpdate) // 修改用户信息
|
|
|
|
user.POST("open_member", controller.OpenMember) // 开通会员
|
2022-01-27 14:24:29 +00:00
|
|
|
user.POST("upgrade_member", controller.UpgradeMember) // 升级会员
|
|
|
|
user.POST("upgrade_member_info", controller.UpgradeMemberInfo) // 升级详情
|
2021-12-25 08:38:30 +00:00
|
|
|
user.POST("pay_deposit", controller.PayDeposit) // 支付押金
|
2022-01-26 08:02:21 +00:00
|
|
|
user.POST("refund_deposit", controller.RefundDeposit) // 退押金
|
2021-12-25 08:38:30 +00:00
|
|
|
user.POST("refund_deposit_record", controller.UserDepositRefundRecordList) // 押金记录
|
2022-03-26 03:25:15 +00:00
|
|
|
user.POST("expire_delay", controller.UserMemberExpireDelayingInfo) // 滞纳金详情
|
|
|
|
user.POST("expire_delay_pay", controller.UserMemberExpireDelayingPay) // 滞纳金支付
|
2022-04-27 02:25:55 +00:00
|
|
|
user.POST("member_config", controller.MemberConfigList) // 开通会员配置
|
2022-04-26 06:28:41 +00:00
|
|
|
user.POST("attendance", controller.UserAttendance) // 签到
|
|
|
|
user.POST("attendance/detail", controller.UserAttendanceDetail) // 签到详情
|
2022-05-13 09:35:10 +00:00
|
|
|
//user.POST("invite_report", controller.InviteMemberReportList) // 用户邀请会员业绩报表
|
2022-01-16 08:56:20 +00:00
|
|
|
|
2021-06-30 02:12:05 +00:00
|
|
|
user.POST("common_problem/list", controller.CommonProblemList) // 常见问题列表
|
|
|
|
//user.POST("service/wechat_id", controller.GetCustomerServiceWechatId) // 获取客服微信号
|
2021-11-01 03:32:23 +00:00
|
|
|
user.POST("invite_applet_code", controller.UserInviteAppletQRCode) // 小程序分享二维码
|
|
|
|
user.POST("invite_list", controller.UserInviteList) // 小程序分享二维码
|
2022-08-31 07:25:45 +00:00
|
|
|
user.POST("use_code_to_coupon", controller.UserCodeToCoupon) // 兑换5券
|
2021-06-30 02:12:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
store := api.Group("store")
|
|
|
|
{
|
|
|
|
store.POST("list", controller.StoreList) // 门店列表
|
|
|
|
store.POST("info", controller.StoreInfo) // 门店详情
|
2022-05-13 09:35:10 +00:00
|
|
|
//store.POST("display_list", controller.DisplayStoreList) // 用户门店列表
|
2021-06-30 02:12:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
address := api.Group("user/address")
|
|
|
|
{
|
|
|
|
|
|
|
|
address.POST("detail", controller.UserAddressDetail) // 地址详情
|
2022-04-21 09:03:33 +00:00
|
|
|
address.Use(auth.UserAccessAuth) //
|
2021-06-30 02:12:05 +00:00
|
|
|
|
|
|
|
address.POST("add", controller.UserAddressAdd) // 新增地址
|
|
|
|
address.POST("update", controller.UserAddressUpdate) // 更新地址
|
|
|
|
address.POST("list", controller.UserAddressList) // 地址列表
|
|
|
|
address.POST("delete", controller.UserAddressDelete) // 删除地址
|
|
|
|
address.POST("set_default", controller.UserAddressSetDefault) // 设为默认地址
|
|
|
|
}
|
|
|
|
|
|
|
|
my := api.Group("user/my")
|
|
|
|
{
|
2022-07-12 13:20:57 +00:00
|
|
|
my.Use(auth.UserAccessAuth)
|
2021-06-30 02:12:05 +00:00
|
|
|
|
|
|
|
my.POST("history_browsing", controller.HistoryBrowsingList) // 浏览记录
|
|
|
|
my.POST("history_browsing/del", controller.HistoryBrowsingDel) // 浏览记录删除
|
|
|
|
my.POST("collection", controller.CollectionList) // 收藏
|
|
|
|
my.POST("collection/add", controller.CollectionAdd) // 收藏添加
|
|
|
|
my.POST("collection/cancel", controller.CollectionCancel) // 收藏删除
|
|
|
|
}
|
|
|
|
|
2022-04-21 09:03:33 +00:00
|
|
|
// 订单
|
2021-06-30 02:12:05 +00:00
|
|
|
order := api.Group("order")
|
|
|
|
{
|
2022-09-29 07:49:16 +00:00
|
|
|
|
2021-06-30 02:12:05 +00:00
|
|
|
order.POST("info", controller.OrderInfo) // 订单详情
|
|
|
|
order.POST("express", controller.OrderExpress) // 订单物流
|
|
|
|
order.POST("express_company/list", controller.ExpressCompanyList) // 物流公司列表
|
|
|
|
order.POST("order/wx_pay/success", controller.WXPaySuccess) // 微信支付成功
|
2022-01-27 14:24:29 +00:00
|
|
|
order.POST("cancel", controller.OrderCancel) // 取消租卡
|
2022-07-12 13:20:57 +00:00
|
|
|
order.Use(auth.UserAccessAuth)
|
|
|
|
order.POST("create", controller.RentCardOrderCreate) // 创建租卡
|
|
|
|
order.POST("pay", controller.OrderPay) // 租卡订单支付
|
|
|
|
order.POST("list", controller.RentCardOrderList) // 租卡订单列表
|
|
|
|
order.POST("revert", controller.OrderRevert) // 租卡订单归还
|
|
|
|
order.POST("revert/cancel", controller.OrderRevertCancel) // 取消归还
|
2021-12-25 08:38:30 +00:00
|
|
|
//order.POST("express_fee/refund", controller.ExpressFeeRefund) // 物流费退款
|
2021-06-30 02:12:05 +00:00
|
|
|
order.POST("confirm_receipt", controller.ConfirmReceipt) // 订单确认收货
|
2022-09-29 07:49:16 +00:00
|
|
|
order.POST("amount", controller.OrderAmount) // 订单金额
|
2021-11-01 03:32:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
article := api.Group("article")
|
|
|
|
{
|
|
|
|
article.POST("thumbs", controller.ArticleThumbs) //
|
|
|
|
article.POST("list", controller.ArticleList) // 列表
|
|
|
|
article.POST("title_panel/list", controller.ArticleTitlePanelList) //
|
|
|
|
|
|
|
|
article.Use(auth.UserAccessAuth)
|
|
|
|
article.POST("info", controller.ArticleInfo) // 详情
|
|
|
|
article.POST("collect/add", controller.ArticleCollectAdd) //
|
|
|
|
article.POST("collect/cancel", controller.ArticleCollectCancel) //
|
|
|
|
article.POST("collect/list", controller.ArticleCollectList) //
|
2021-06-30 02:12:05 +00:00
|
|
|
}
|
2021-12-25 08:38:30 +00:00
|
|
|
activity := api.Group("activity")
|
|
|
|
{
|
|
|
|
activity.Use(auth.UserAccessAuth)
|
|
|
|
activity.POST("redeem_code/user_redeem_code/list", controller.UserRedeemCodeList) // 详情
|
|
|
|
activity.POST("redeem_code/user/convert", controller.UserConvertRedeemCode) // 会员兑换码
|
2022-06-23 04:21:01 +00:00
|
|
|
|
|
|
|
// 会员续费
|
|
|
|
activity.POST("member_renewal/state", controller.UserMemberRenewalState)
|
2022-06-29 08:03:50 +00:00
|
|
|
activity.POST("member_renewal/info", controller.UserMemberRenewalInfo)
|
|
|
|
activity.POST("member_renewal/coupon_draw", controller.UserMemberRenewalCouponDraw)
|
|
|
|
activity.POST("member_renewal/user_coupon/list", controller.MemberRenewalUserCouponList)
|
2022-09-29 07:49:16 +00:00
|
|
|
activity.POST("postage_package/buy", controller.PostagePackageBuy)
|
2023-07-14 09:29:05 +00:00
|
|
|
activity.POST("user_coupon/list", controller.UserCouponList) // 运费包
|
2022-09-29 07:49:16 +00:00
|
|
|
activity.POST("postage_package/info", controller.PostagePackageInfo)
|
2022-01-16 08:56:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mall := api.Group("mall")
|
|
|
|
{
|
|
|
|
mall.POST("goods/list", controller.MallGoodsList) // 商品-列表
|
|
|
|
mall.POST("goods/detail", controller.MallGoodsDetail) // 商品-详情
|
2022-05-28 06:18:27 +00:00
|
|
|
mall.POST("goods/spec", controller.MallGoodsSpec) // 商品-规格
|
|
|
|
mall.POST("cat/list", controller.MallGoodsCatList) // 商品-分类列表
|
2021-06-30 02:12:05 +00:00
|
|
|
|
2022-03-07 06:14:05 +00:00
|
|
|
mall.Use(auth.UserAccessAuth)
|
|
|
|
mall.POST("order/create", controller.MallOrderCreate) // 订单-创建(下单)
|
|
|
|
mall.POST("order/pay", controller.MallOrderPay) // 订单-支付
|
|
|
|
mall.POST("order/list", controller.MallOrderList) // 订单-列表
|
|
|
|
mall.POST("order/detail", controller.MallOrderDetail) // 订单-详情
|
|
|
|
mall.POST("user/vm_record", controller.MallUserVmRecord) // 用户-积分记录
|
|
|
|
mall.POST("order/confirm_receipt", controller.MallGoodsOrderConfirmReceipt) // 用户-确认收货
|
2022-05-28 06:18:27 +00:00
|
|
|
mall.POST("order/cancel", controller.MallOrderCancel) // 订单-取消
|
|
|
|
mall.POST("order/refund", controller.MallOrderRefund) // 订单-退货
|
|
|
|
mall.POST("order/refund_cancel", controller.MallOrderRefundCancel) // 订单-退货-取消
|
|
|
|
mall.POST("order/refund_send", controller.MallOrderRefundSend) // 订单-退货-填物流
|
2021-12-25 08:38:30 +00:00
|
|
|
}
|
2022-01-15 13:10:00 +00:00
|
|
|
shoppingCart := api.Group("shopping_cart")
|
|
|
|
{
|
|
|
|
|
|
|
|
shoppingCart.Use(auth.UserAccessAuth)
|
|
|
|
shoppingCart.POST("list", controller.ShoppingCartList) // 详情
|
|
|
|
shoppingCart.POST("add", controller.ShoppingCartAdd) //
|
|
|
|
shoppingCart.POST("del", controller.ShoppingCartDel) //
|
|
|
|
|
|
|
|
}
|
2022-03-26 03:25:15 +00:00
|
|
|
shareCard := api.Group("share_card")
|
|
|
|
{
|
2022-04-08 02:28:50 +00:00
|
|
|
shareCard.POST("game/list", controller.UserShareCardGameList) // 共享单游戏列表
|
2022-03-26 03:25:15 +00:00
|
|
|
shareCard.Use(auth.UserAccessAuth)
|
2022-04-08 02:28:50 +00:00
|
|
|
|
2022-04-02 07:55:23 +00:00
|
|
|
shareCard.POST("bill/list", controller.UserShareCardBillList) // 共享单列表
|
|
|
|
shareCard.POST("bill/add", controller.UserShareCardBillCreate) //
|
|
|
|
shareCard.POST("bill/cancel", controller.UserShareCardBillCancel) //
|
|
|
|
shareCard.POST("bill/send_card", controller.ShareCardBillSendCard) //
|
|
|
|
shareCard.POST("bill/info", controller.UserShareCardBillInfo) // 共享单详情
|
|
|
|
shareCard.POST("bill/my_card", controller.UserShareCardMyCard) // 我的共享卡
|
|
|
|
shareCard.POST("user_card_vm", controller.UserShareCardVmRecord) // 我的共享卡积分记录
|
|
|
|
|
2022-04-04 11:03:22 +00:00
|
|
|
shareCard.POST("retrieve/add", controller.ShareCardRetrieveCreate) // 我的共享卡收回
|
|
|
|
shareCard.POST("retrieve_card/cancel", controller.ShareCardRetrieveCancel) // 我的共享卡收回取消
|
2022-04-08 02:28:50 +00:00
|
|
|
shareCard.POST("retrieve_card/list", controller.ShareCardRetrieveList) // 我的共享卡收回列表
|
|
|
|
shareCard.POST("retrieve_card/detail", controller.ShareCardRetrieveDetail) // 我的共享卡收回详情
|
|
|
|
shareCard.POST("retrieve_card/confirm", controller.ShareCardRetrieveConfirm) // 我的共享卡收回确认
|
|
|
|
|
2022-04-18 05:50:31 +00:00
|
|
|
shareCard.POST("card_issue/add", controller.CardIssueCreate) // 我的共享卡问题反馈
|
2022-06-03 03:30:03 +00:00
|
|
|
shareCard.POST("card_issue/cancel", controller.CardIssueCancel) // 我的共享卡问题反馈取消
|
2022-04-18 05:50:31 +00:00
|
|
|
shareCard.POST("card_issue/list", controller.CardIssueList) // 我的共享卡问题反馈列表
|
|
|
|
shareCard.POST("card_issue/info", controller.CardIssueInfo) // 我的共享卡问题反馈详情
|
2022-04-19 04:36:34 +00:00
|
|
|
shareCard.POST("card_issue/deliver", controller.CardIssueDeliver) // 我的共享卡问题反馈卡发货
|
2022-06-14 06:07:15 +00:00
|
|
|
//shoppingCart.POST("del", controller.ShoppingCartDel)
|
2022-05-10 07:17:34 +00:00
|
|
|
}
|
|
|
|
cooperative := api.Group("cooperative_business")
|
|
|
|
{
|
|
|
|
cooperative.Use(auth.UserAccessAuth)
|
|
|
|
cooperative.POST("rent_card_order/list", controller.CooperativeRentCardOrderList)
|
|
|
|
cooperative.POST("rent_card_order/info", controller.CooperativeRentCardOrderInfo)
|
2022-06-03 03:30:03 +00:00
|
|
|
cooperative.POST("rent_card_order/deliver", controller.CooperativeRentCardOrderDeliver) // 订单发货
|
|
|
|
cooperative.POST("rent_card_order/revert", controller.CooperativeRentCardOrderRevert) // 订单归还
|
|
|
|
cooperative.POST("goods_stock/adds", controller.CooperativeGameCardGoodsStockAdds) // 游戏卡入库
|
|
|
|
cooperative.POST("goods_stock/analysis", controller.GameCardGoodsStockAnalysis) // 游戏卡
|
|
|
|
cooperative.POST("goods_stock/export", controller.CooperativeExportDataGameCardGoodsStock) // 库存导出
|
|
|
|
cooperative.POST("goods_stock/goods_list", controller.CooperativeGameCardGoodsList) // 卡列表
|
|
|
|
cooperative.POST("member_promotion/assistant_list", controller.AssistantMemberPromotionList) // 店员推广 TODO
|
|
|
|
cooperative.POST("member_promotion/assistant_detail", controller.AssistantMemberPromotionDetail) // 店员推广 TODO
|
2022-05-10 07:17:34 +00:00
|
|
|
|
2022-05-13 09:35:10 +00:00
|
|
|
cooperative.POST("display_list", controller.DisplayStoreList) // 用户门店列表
|
|
|
|
cooperative.POST("invite_report", controller.InviteMemberReportList) // 用户邀请会员业绩报表
|
|
|
|
|
2022-05-10 07:17:34 +00:00
|
|
|
cooperative.POST("/cannibalize_task/create", controller.CooperativeCannibalizeTaskCreate) // 创建调拨
|
|
|
|
cooperative.POST("/cannibalize_task/import_goods", controller.CooperativeCannibalizeTaskImportGoods) //
|
|
|
|
cooperative.POST("/cannibalize_task/deliver_goods", controller.CooperativeCannibalizeTaskDeliverGoods) //
|
|
|
|
cooperative.POST("/cannibalize_task/put_in_storage", controller.CooperativeCannibalizeTaskPutInStorage) //
|
|
|
|
cooperative.POST("/cannibalize_task/list", controller.CooperativeCannibalizeTaskList) //
|
|
|
|
cooperative.POST("/cannibalize_task/goods_list", controller.CooperativeCannibalizeTaskGameCardGoodsList) //
|
|
|
|
cooperative.POST("/cannibalize_task/del", controller.CooperativeCannibalizeTaskDel) //
|
|
|
|
//order.POST("/card/adds", stockmanage.GameCardGoodsStockAdds) // 游戏卡入库
|
2022-03-26 03:25:15 +00:00
|
|
|
}
|
2022-08-01 07:14:53 +00:00
|
|
|
recycle := api.Group("recycle_card")
|
|
|
|
{
|
|
|
|
recycle.Use(auth.UserAccessAuth)
|
|
|
|
recycle.POST("cassette/list", controller.GameCassetteList)
|
|
|
|
recycle.POST("check/goods", controller.GameCheckGoods)
|
|
|
|
recycle.POST("cassette/evaluation", controller.GameEvaluation)
|
|
|
|
recycle.POST("order/create", controller.RecycleCardCreateOrder)
|
|
|
|
recycle.POST("order/list", controller.RecycleCardOrderList)
|
|
|
|
recycle.POST("order/detail", controller.RecycleCardOrderDetail)
|
|
|
|
recycle.POST("order/cancel", controller.RecycleCardOrderCancel)
|
2022-08-12 02:41:33 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
console := api.Group("console")
|
|
|
|
recycleConsole := console.Group("recycle_card")
|
|
|
|
{
|
|
|
|
recycleConsole.Use(auth.UserAccessAuth)
|
|
|
|
recycleConsole.POST("cassette_image/update", controller.RecycleCardOrderImageUpdate) // 管理端
|
|
|
|
recycleConsole.POST("order/check", controller.RecycleCardOrderCheck) // 管理端
|
|
|
|
recycleConsole.POST("order/list", controller.ConsoleRecycleCardOrderList)
|
2022-08-01 07:14:53 +00:00
|
|
|
}
|
2023-01-06 02:03:56 +00:00
|
|
|
retail := console.Group("retail")
|
|
|
|
{
|
|
|
|
retail.POST("order_commodity_list", controller.ErpOrderCommodityList)
|
|
|
|
|
2023-01-18 01:10:44 +00:00
|
|
|
retail.Use(auth.UserAccessAuth)
|
2023-01-06 02:03:56 +00:00
|
|
|
retail.POST("order/list", controller.ErpOrderList)
|
|
|
|
retail.POST("order/create", controller.ErpOrderCreate)
|
2023-02-22 06:25:46 +00:00
|
|
|
retail.POST("order_modify", controller.ErpOrderModify)
|
2023-01-06 02:03:56 +00:00
|
|
|
retail.POST("order_detail", controller.ErpOrderDetail)
|
|
|
|
retail.POST("shop_assistant_list", controller.ShopAssistantList)
|
2023-01-13 09:32:25 +00:00
|
|
|
retail.POST("order_audit", controller.ErpOrderAudit)
|
2023-02-09 08:59:06 +00:00
|
|
|
retail.POST("cashier_store_list", controller.ErpCashierStoreList)
|
|
|
|
retail.POST("order_del", controller.ErpOrderDel)
|
|
|
|
retail.POST("user_info/list", controller.UserInfoList)
|
|
|
|
retail.POST("commodity_list", controller.ErpCommodityList)
|
2023-01-06 02:03:56 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 02:12:05 +00:00
|
|
|
}
|