feat: openid login
This commit is contained in:
@@ -72,6 +72,8 @@ service Sale {
|
||||
|
||||
// 销售详情
|
||||
rpc InfoInternal(InfoReq) returns (InfoData);
|
||||
// 按 user_id 查销售详情(内部)
|
||||
rpc InfoByUserId(InfoByUserIdReq) returns (InfoData);
|
||||
// ids 批量查销售
|
||||
rpc NamesByIds(NamesByIdsReq) returns (NamesByIdsData);
|
||||
}
|
||||
@@ -154,6 +156,10 @@ message InfoReq {
|
||||
int64 id = 1;
|
||||
}
|
||||
|
||||
message InfoByUserIdReq {
|
||||
int64 user_id = 1;
|
||||
}
|
||||
|
||||
message Region {
|
||||
string province = 1;
|
||||
string city = 2;
|
||||
@@ -194,6 +200,7 @@ message InfoData {
|
||||
string create_time = 26;
|
||||
string update_time = 27;
|
||||
GroupItem group = 28;
|
||||
int64 user_id = 29;
|
||||
}
|
||||
|
||||
message ItemsReq {
|
||||
|
||||
Reference in New Issue
Block a user