Merge pull request 'feat-20240121-001-Robin' (#72) from feat-20240121-001-Robin into main

Reviewed-on: #72
This commit is contained in:
chenhao 2024-01-23 19:12:49 +08:00
commit 6a0f2cdde2
2 changed files with 8 additions and 1 deletions

View File

@ -948,7 +948,13 @@ func (s *Service) GetCoinsProductList(ctx *gin.Context, req *vasproto.GetCoinsPr
}
func (s *Service) CreateOrder(ctx *gin.Context, req *vasproto.CreateOrderReq) (data *vasproto.CreateOrderData, ec errcode.ErrCode) {
req.ReturnUrl = "https://tiefen.fun/pay"
switch req.ProductId {
case dbstruct.ProductIdMembership:
req.ReturnUrl = "https://tiefen.fun/vip"
default:
req.ReturnUrl = "https://tiefen.fun/pay"
}
data, err := _DefaultVas.CreateOrder(ctx, req)
ec, err = errs.DealVasErr(err)
if err != nil {

View File

@ -138,6 +138,7 @@ CREATE TABLE `vas_withdraw_order`
CREATE INDEX ix_mid_applytime ON vas_withdraw_order (mid, apply_time);
CREATE TABLE `vas_withdraw_diamonds_his`
(
`id` bigint AUTO_INCREMENT COMMENT 'id',