Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bank Account Service #12

Open
jacky-htg opened this issue Aug 7, 2023 · 1 comment
Open

Bank Account Service #12

jacky-htg opened this issue Aug 7, 2023 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@jacky-htg
Copy link
Owner

see file of proto/ledgers/bank_account_service.proto

@jacky-htg jacky-htg added the enhancement New feature or request label Aug 7, 2023
@jacky-htg jacky-htg self-assigned this Aug 7, 2023
@jacky-htg
Copy link
Owner Author

message BankAccount {
  string id = 1;
  string company_id = 2;
  string bank_name = 3;
  string account_number = 4;
  string account_name = 5;
  string account_type = 6;
  string owner_type = 7;
  string created_at = 8;
  string created_by = 9;
  string updated_at = 10;
  string updated_by = 11;
}
service BankAccountService {
  rpc Create(BankAccount) returns (BankAccount) {}
  rpc View(Id) returns (BankAccount) {}
  rpc Update(Id) returns (BankAccount) {}
  rpc List(EmptyMessage) returns (stream BankAccount) {}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant