增加API文档注释

This commit is contained in:
刘祥超
2023-11-24 09:06:36 +08:00
parent 7c5c6267d4
commit 7dbf5add34
9 changed files with 102 additions and 102 deletions

View File

@@ -6,10 +6,10 @@ package pb;
import "models/model_user.proto";
message UserAccount {
int64 id = 1;
int64 userId = 2;
double total = 3;
double totalFrozen = 4;
int64 id = 1; // 账户ID
int64 userId = 2; // 用户ID
double total = 3; // 总可用余额
double totalFrozen = 4; // 总冻结余额
User user = 30;
User user = 30; // 用户信息
}