v1.5.1 增强程序稳定性

This commit is contained in:
robin
2026-03-22 17:37:40 +08:00
parent afbaaa869c
commit 17e182b413
652 changed files with 22949 additions and 34397 deletions

View File

@@ -1,7 +1,7 @@
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.5.1
// - protoc v6.33.2
// - protoc-gen-go-grpc v1.6.1
// - protoc v3.19.6
// source: service_user_bill.proto
package pb
@@ -143,22 +143,22 @@ type UserBillServiceServer interface {
type UnimplementedUserBillServiceServer struct{}
func (UnimplementedUserBillServiceServer) GenerateAllUserBills(context.Context, *GenerateAllUserBillsRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method GenerateAllUserBills not implemented")
return nil, status.Error(codes.Unimplemented, "method GenerateAllUserBills not implemented")
}
func (UnimplementedUserBillServiceServer) CountAllUserBills(context.Context, *CountAllUserBillsRequest) (*RPCCountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CountAllUserBills not implemented")
return nil, status.Error(codes.Unimplemented, "method CountAllUserBills not implemented")
}
func (UnimplementedUserBillServiceServer) ListUserBills(context.Context, *ListUserBillsRequest) (*ListUserBillsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListUserBills not implemented")
return nil, status.Error(codes.Unimplemented, "method ListUserBills not implemented")
}
func (UnimplementedUserBillServiceServer) FindUserBill(context.Context, *FindUserBillRequest) (*FindUserBillResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindUserBill not implemented")
return nil, status.Error(codes.Unimplemented, "method FindUserBill not implemented")
}
func (UnimplementedUserBillServiceServer) PayUserBill(context.Context, *PayUserBillRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method PayUserBill not implemented")
return nil, status.Error(codes.Unimplemented, "method PayUserBill not implemented")
}
func (UnimplementedUserBillServiceServer) SumUserUnpaidBills(context.Context, *SumUserUnpaidBillsRequest) (*SumUserUnpaidBillsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SumUserUnpaidBills not implemented")
return nil, status.Error(codes.Unimplemented, "method SumUserUnpaidBills not implemented")
}
func (UnimplementedUserBillServiceServer) testEmbeddedByValue() {}
@@ -170,7 +170,7 @@ type UnsafeUserBillServiceServer interface {
}
func RegisterUserBillServiceServer(s grpc.ServiceRegistrar, srv UserBillServiceServer) {
// If the following call pancis, it indicates UnimplementedUserBillServiceServer was
// If the following call panics, it indicates UnimplementedUserBillServiceServer was
// embedded by pointer and is nil. This will cause panics if an
// unimplemented method is ever invoked, so we test this at initialization
// time to prevent it from happening at runtime later due to I/O.