This commit is contained in:
wh_zcy 2022-11-04 18:41:29 +08:00
commit cdd2dacb4a
3 changed files with 474 additions and 470 deletions

File diff suppressed because it is too large Load Diff

View File

@ -30,7 +30,7 @@ func (this *modelPayComp) Init(service core.IService, module core.IModule, comp
}
//查询用户重置数据
func (this *modelPayComp) queryUserShopData(uId string) (result []*pb.DBPayOrder, err error) {
func (this *modelPayComp) queryUserPayData(uId string) (result []*pb.DBPayOrder, err error) {
result = make([]*pb.DBPayOrder, 0)
if err = this.GetList(uId, &result); err != nil && err != mgo.MongodbNil {
this.module.Errorf("err:%v", err)
@ -40,3 +40,7 @@ func (this *modelPayComp) queryUserShopData(uId string) (result []*pb.DBPayOrder
}
return
}
func (this *modelPayComp) addUserPayOrder() {
}

View File

@ -98,7 +98,7 @@ func (this *Pay) Rpc_ModulePayDelivery(ctx context.Context, args *pb.PayDelivery
return
}
}
switch conf.RechargeType {
case 1:
break