mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-11 01:50:26 +08:00
支持购买套餐/续费套餐/用户账户操作等
This commit is contained in:
24
pkg/rpc/protos/models/model_user_account_log.proto
Normal file
24
pkg/rpc/protos/models/model_user_account_log.proto
Normal file
@@ -0,0 +1,24 @@
|
||||
syntax = "proto3";
|
||||
option go_package = "./pb";
|
||||
|
||||
package pb;
|
||||
|
||||
import "models/model_user.proto";
|
||||
import "models/model_user_account.proto";
|
||||
|
||||
message UserAccountLog {
|
||||
int64 id = 1;
|
||||
int64 userId = 2;
|
||||
int64 userAccountId = 3;
|
||||
float delta = 4;
|
||||
float deltaFrozen = 5;
|
||||
float total = 6;
|
||||
float totalFrozen = 7;
|
||||
string eventType = 8;
|
||||
string description = 9;
|
||||
int64 createdAt = 10;
|
||||
bytes paramsJSON = 11;
|
||||
|
||||
User user = 30;
|
||||
UserAccount userAccount = 31;
|
||||
}
|
||||
Reference in New Issue
Block a user