mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-08 16:00:25 +08:00
15 lines
213 B
Protocol Buffer
15 lines
213 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
import "models/model_user.proto";
|
||
|
|
|
||
|
|
message UserAccount {
|
||
|
|
int64 id = 1;
|
||
|
|
int64 userId = 2;
|
||
|
|
float total = 3;
|
||
|
|
float totalFrozen = 4;
|
||
|
|
|
||
|
|
User user = 30;
|
||
|
|
}
|