部分中文转换为多语言代号

This commit is contained in:
刘祥超
2023-06-30 18:09:43 +08:00
parent 141dd89f6f
commit fd9849c9ff
175 changed files with 2510 additions and 709 deletions

View File

@@ -32,10 +32,12 @@ service LogService {
// 创建日志
message CreateLogRequest {
string level = 1;
string description = 2;
string action = 3;
string ip = 4;
string level = 1; // 级别info, warn, error
string description = 2; // 描述
string action = 3; // 可选项发生操作所在的页面URL
string ip = 4; // 可选项操作用户IP
string langMessageCode = 5; // 多语言消息
bytes langMessagesArgsJSON = 6; // 多语言消息中的参数项,格式:[arg1, arg2, ...]
}
message CreateLogResponse {