实现带宽计费套餐

This commit is contained in:
GoEdgeLab
2022-01-23 19:16:22 +08:00
parent 7809763a51
commit 842b62ef65
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())
}