Merge pull request 'feat-20240121-001-Robin' (#72) from feat-20240121-001-Robin into main
Reviewed-on: #72
This commit is contained in:
commit
6a0f2cdde2
|
@ -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 {
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue