实现带宽计费套餐

This commit is contained in:
刘祥超
2022-01-23 19:16:22 +08:00
parent 460439f6bd
commit e06d1fa5b0
4 changed files with 221 additions and 8 deletions

View File

@@ -386,6 +386,10 @@ func (this *RPCClient) UserBillRPC() pb.UserBillServiceClient {
return pb.NewUserBillServiceClient(this.pickConn())
}
func (this *RPCClient) ServerBillRPC() pb.ServerBillServiceClient {
return pb.NewServerBillServiceClient(this.pickConn())
}
func (this *RPCClient) UserAccountRPC() pb.UserAccountServiceClient {
return pb.NewUserAccountServiceClient(this.pickConn())
}