15 lines
240 B
Protocol Buffer
15 lines
240 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package bet.beteran.bank;
|
|
|
|
message Bank {
|
|
string id = 1;
|
|
string name = 2;
|
|
uint32 sort_order = 3;
|
|
bool show = 4;
|
|
bool can_use = 5;
|
|
optional string memo = 6;
|
|
uint64 created_at = 7;
|
|
uint64 updated_at = 8;
|
|
}
|