86 lines
2.0 KiB
Protocol Buffer
86 lines
2.0 KiB
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package bet.beteran.c2se.member_bank_account;
|
||
|
|
||
|
import "protobuf/rpc.proto";
|
||
|
import "protobuf/pagination.proto";
|
||
|
|
||
|
import "models/member_bank_account.proto";
|
||
|
|
||
|
message CreateMemberBankAccountRequest {
|
||
|
string member_id = 1;
|
||
|
string bank_id = 2;
|
||
|
string name = 3;
|
||
|
string account_number = 4;
|
||
|
optional string memo = 5;
|
||
|
}
|
||
|
|
||
|
message CreateMemberBankAccountResponse {
|
||
|
message Result {
|
||
|
bet.beteran.member_bank_account.MemberBankAccount member_bank_account = 1;
|
||
|
}
|
||
|
optional bet.protobuf.rpc.Error error = 1;
|
||
|
optional Result result = 2;
|
||
|
}
|
||
|
|
||
|
message ListMemberBankAccountsRequest {
|
||
|
message Search {
|
||
|
optional string member_id = 1;
|
||
|
optional string bank_id = 2;
|
||
|
optional string name_like = 3;
|
||
|
optional string account_number_like = 4;
|
||
|
optional string memo_like = 5;
|
||
|
}
|
||
|
optional bet.protobuf.pagination.Pagination pagination = 1;
|
||
|
repeated bet.protobuf.pagination.Sort sorts = 2;
|
||
|
optional Search search = 3;
|
||
|
}
|
||
|
|
||
|
message ListMemberBankAccountsResponse {
|
||
|
message Result {
|
||
|
repeated bet.beteran.member_bank_account.MemberBankAccount member_bank_accounts = 1;
|
||
|
}
|
||
|
optional bet.protobuf.rpc.Error error = 1;
|
||
|
optional Result result = 2;
|
||
|
}
|
||
|
|
||
|
message GetMemberBankAccountRequest {
|
||
|
string id = 1;
|
||
|
}
|
||
|
|
||
|
message GetMemberBankAccountResponse {
|
||
|
message Result {
|
||
|
bet.beteran.member_bank_account.MemberBankAccount member_bank_account = 1;
|
||
|
}
|
||
|
optional bet.protobuf.rpc.Error error = 1;
|
||
|
optional Result result = 2;
|
||
|
}
|
||
|
|
||
|
message UpdateMemberBankAccountRequest {
|
||
|
string id = 1;
|
||
|
string bank_id = 2;
|
||
|
string name = 3;
|
||
|
string account_number = 4;
|
||
|
optional string memo = 5;
|
||
|
|
||
|
}
|
||
|
|
||
|
message UpdateMemberBankAccountResponse {
|
||
|
message Result {
|
||
|
bet.beteran.member_bank_account.MemberBankAccount member_bank_account = 1;
|
||
|
}
|
||
|
optional bet.protobuf.rpc.Error error = 1;
|
||
|
optional Result result = 2;
|
||
|
}
|
||
|
|
||
|
message DeleteMemberBankAccountRequest {
|
||
|
string id = 1;
|
||
|
}
|
||
|
|
||
|
message DeleteMemberBankAccountResponse {
|
||
|
message Result {
|
||
|
}
|
||
|
optional bet.protobuf.rpc.Error error = 1;
|
||
|
optional Result result = 2;
|
||
|
}
|