格式化代码

This commit is contained in:
flswld
2023-05-22 00:39:02 +08:00
parent f851ad1692
commit 3100e8b147
115 changed files with 38550 additions and 38546 deletions

View File

@@ -3,7 +3,7 @@ syntax = "proto3";
package proto_log;
enum OrderActionType {
ORDER_ACTION_NONE = 0;
ORDER_ACTION_ADD = 1;
ORDER_ACTION_FINISH = 2;
ORDER_ACTION_NONE = 0;
ORDER_ACTION_ADD = 1;
ORDER_ACTION_FINISH = 2;
}

View File

@@ -3,26 +3,26 @@ syntax = "proto3";
package proto_log;
message OrderLogBodyAdd {
uint32 order_id = 1;
uint32 uid = 2;
string product_id = 3;
string product_name = 4;
uint32 product_num = 5;
uint32 coin_num = 6;
string total_fee = 7;
string currency = 8;
string price_tier = 9;
string trade_no = 10;
uint32 trade_time = 11;
uint32 channel_id = 12;
string channel_order_no = 13;
string pay_plat = 14;
string extend = 15;
uint32 order_id = 1;
uint32 uid = 2;
string product_id = 3;
string product_name = 4;
uint32 product_num = 5;
uint32 coin_num = 6;
string total_fee = 7;
string currency = 8;
string price_tier = 9;
string trade_no = 10;
uint32 trade_time = 11;
uint32 channel_id = 12;
string channel_order_no = 13;
string pay_plat = 14;
string extend = 15;
}
message OrderLogBodyFinish {
uint32 order_id = 1;
uint32 uid = 2;
uint32 finish_time = 3;
bool is_retry = 4;
uint32 order_id = 1;
uint32 uid = 2;
uint32 finish_time = 3;
bool is_retry = 4;
}

View File

@@ -3,9 +3,9 @@ syntax = "proto3";
package proto_log;
message OrderLogHead {
string time = 1;
uint32 action_id = 2;
string action_name = 3;
uint32 sub_action_id = 4;
string sub_action_name = 5;
string time = 1;
uint32 action_id = 2;
string action_name = 3;
uint32 sub_action_id = 4;
string sub_action_name = 5;
}