|
|
|
@ -27,38 +27,50 @@ enum DistrictQueryType {
|
|
|
|
|
Parents = 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DepartmentReq {
|
|
|
|
|
message DepartmentInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string name = 2;
|
|
|
|
|
int64 leader_id = 3;
|
|
|
|
|
int64 parent_id = 4;
|
|
|
|
|
bool with_leader = 5;
|
|
|
|
|
bool with_user = 6;
|
|
|
|
|
bool with_children = 7;
|
|
|
|
|
optional Pagination page = 10;
|
|
|
|
|
string status = 2;
|
|
|
|
|
string created_at = 3;
|
|
|
|
|
string updated_at = 4;
|
|
|
|
|
string name = 5;
|
|
|
|
|
int64 leader_id = 6;
|
|
|
|
|
string remark = 7;
|
|
|
|
|
int64 parent_id = 8;
|
|
|
|
|
DepartmentInfo parent = 10;
|
|
|
|
|
repeated DepartmentInfo children = 11;
|
|
|
|
|
repeated UserInfo users = 12;
|
|
|
|
|
UserInfo leader = 13;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DepartmentListResp {
|
|
|
|
|
message DeleteDictionaryDetailReq {
|
|
|
|
|
repeated int64 ids = 1;
|
|
|
|
|
int64 dict_id = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message UserSocialListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated DepartmentInfo data = 2;
|
|
|
|
|
repeated UserSocialInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DictionaryReq {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
// 基础回执
|
|
|
|
|
message BaseResp {
|
|
|
|
|
int32 code = 1;
|
|
|
|
|
string msg = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message GetDistrictNameResp {
|
|
|
|
|
string code = 1;
|
|
|
|
|
string name = 2;
|
|
|
|
|
string title = 3;
|
|
|
|
|
bool with_details = 4;
|
|
|
|
|
optional Pagination page = 10;
|
|
|
|
|
repeated string name_list = 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DictionaryDetailReq {
|
|
|
|
|
message RecordReq {
|
|
|
|
|
int64 user_id = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message OauthProviderListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
int64 ID = 2;
|
|
|
|
|
int64 dict_id = 3;
|
|
|
|
|
string title = 4;
|
|
|
|
|
string key = 5;
|
|
|
|
|
string value = 6;
|
|
|
|
|
bool with_dictionary = 7;
|
|
|
|
|
repeated OauthProviderInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message TokenInfo {
|
|
|
|
@ -74,73 +86,74 @@ message TokenInfo {
|
|
|
|
|
UserInfo user = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message OauthProviderInfo {
|
|
|
|
|
message UserReq {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string created_at = 2;
|
|
|
|
|
string updated_at = 3;
|
|
|
|
|
string name = 4;
|
|
|
|
|
string client_id = 5;
|
|
|
|
|
string client_secret = 6;
|
|
|
|
|
string redirect_url = 7;
|
|
|
|
|
string scopes = 8;
|
|
|
|
|
string auth_url = 9;
|
|
|
|
|
string token_url = 10;
|
|
|
|
|
string info_url = 11;
|
|
|
|
|
string description = 12;
|
|
|
|
|
bool system = 13;
|
|
|
|
|
bool init = 14;
|
|
|
|
|
string username = 2;
|
|
|
|
|
string phone_number = 3;
|
|
|
|
|
string email = 4;
|
|
|
|
|
string nickname = 5;
|
|
|
|
|
bool with_role = 6;
|
|
|
|
|
bool with_social = 7;
|
|
|
|
|
bool with_department = 8;
|
|
|
|
|
bool with_token = 9;
|
|
|
|
|
bool with_login_record = 10;
|
|
|
|
|
optional Pagination page = 20;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message RoleListResp {
|
|
|
|
|
message GetUserRolesReq {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated RoleInfo data = 2;
|
|
|
|
|
int64 user_id = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message IDReq {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
message DepartmentListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated DepartmentInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DistrictInfo 地址单体结构
|
|
|
|
|
message DistrictInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string created_at = 2;
|
|
|
|
|
string updated_at = 3;
|
|
|
|
|
string name = 4;
|
|
|
|
|
string short_name = 5;
|
|
|
|
|
string code = 6;
|
|
|
|
|
string province = 7;
|
|
|
|
|
string city = 8;
|
|
|
|
|
string area = 9;
|
|
|
|
|
string street = 10;
|
|
|
|
|
uint32 level = 11;
|
|
|
|
|
double latitude = 12;
|
|
|
|
|
double longitude = 13;
|
|
|
|
|
repeated DistrictInfo children = 20;
|
|
|
|
|
message DictionaryDetailListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated DictionaryDetailInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DistrictTree {
|
|
|
|
|
repeated DistrictInfo tree = 1;
|
|
|
|
|
message DistrictListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated DistrictInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DistrictCodeReq {
|
|
|
|
|
string code = 1;
|
|
|
|
|
message OauthProviderReq {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string name = 2;
|
|
|
|
|
string client_id = 3;
|
|
|
|
|
optional bool system = 4;
|
|
|
|
|
optional bool init = 5;
|
|
|
|
|
optional Pagination page = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message GetDistrictNameReq {
|
|
|
|
|
string code = 1;
|
|
|
|
|
string separator = 2;
|
|
|
|
|
message CallbackReq {
|
|
|
|
|
string state = 1;
|
|
|
|
|
string code = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message LoginRecordInfo {
|
|
|
|
|
message OauthRedirectResp {
|
|
|
|
|
string url = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message UserInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string status = 2;
|
|
|
|
|
string created_at = 3;
|
|
|
|
|
string updated_at = 4;
|
|
|
|
|
int64 user_id = 5;
|
|
|
|
|
string last_login_at = 6;
|
|
|
|
|
string last_login_ipv4 = 7;
|
|
|
|
|
string last_login_device = 8;
|
|
|
|
|
string last_login_ua = 9;
|
|
|
|
|
uint64 login_count = 10;
|
|
|
|
|
string username = 5;
|
|
|
|
|
optional string phone_number = 6;
|
|
|
|
|
optional string email = 7;
|
|
|
|
|
string password = 8;
|
|
|
|
|
optional string nickname = 9;
|
|
|
|
|
map<string,string> metas = 10;
|
|
|
|
|
repeated RoleInfo roles = 20;
|
|
|
|
|
repeated UserSocialInfo socials = 21;
|
|
|
|
|
repeated DepartmentInfo departments = 22;
|
|
|
|
|
repeated TokenInfo tokens = 23;
|
|
|
|
|
LoginRecordInfo login_record = 24;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message UserRoleReq {
|
|
|
|
@ -149,12 +162,28 @@ message UserRoleReq {
|
|
|
|
|
repeated string role_codes = 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Base message
|
|
|
|
|
message Empty {}
|
|
|
|
|
message DictionaryInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string status = 2;
|
|
|
|
|
string created_at = 3;
|
|
|
|
|
string updated_at = 4;
|
|
|
|
|
string title = 5;
|
|
|
|
|
string name = 6;
|
|
|
|
|
string description = 7;
|
|
|
|
|
repeated DictionaryDetailInfo details = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DictionaryDetailListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated DictionaryDetailInfo data = 2;
|
|
|
|
|
message DictionaryDetailInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string status = 2;
|
|
|
|
|
string created_at = 3;
|
|
|
|
|
string updated_at = 4;
|
|
|
|
|
string title = 5;
|
|
|
|
|
string key = 6;
|
|
|
|
|
string value = 7;
|
|
|
|
|
uint32 sort = 8;
|
|
|
|
|
int64 dictionary_id = 9;
|
|
|
|
|
DictionaryInfo dictionary = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DistrictReq {
|
|
|
|
@ -170,14 +199,8 @@ message DistrictReq {
|
|
|
|
|
DistrictQueryType query_type = 11;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message OauthLoginReq {
|
|
|
|
|
string state = 1;
|
|
|
|
|
string provider = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message GetUserRolesReq {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
int64 user_id = 2;
|
|
|
|
|
message DistrictCodeReq {
|
|
|
|
|
string code = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 分页参数
|
|
|
|
@ -187,35 +210,47 @@ message Pagination {
|
|
|
|
|
uint64 current = 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DictionaryInfo {
|
|
|
|
|
message GetDistrictNameReq {
|
|
|
|
|
string code = 1;
|
|
|
|
|
string separator = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message LoginRecordInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string status = 2;
|
|
|
|
|
string created_at = 3;
|
|
|
|
|
string updated_at = 4;
|
|
|
|
|
string title = 5;
|
|
|
|
|
string name = 6;
|
|
|
|
|
string description = 7;
|
|
|
|
|
repeated DictionaryDetailInfo details = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message OauthProviderListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated OauthProviderInfo data = 2;
|
|
|
|
|
int64 user_id = 5;
|
|
|
|
|
string last_login_at = 6;
|
|
|
|
|
string last_login_ipv4 = 7;
|
|
|
|
|
string last_login_device = 8;
|
|
|
|
|
string last_login_ua = 9;
|
|
|
|
|
uint64 login_count = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message TokenUserReq {
|
|
|
|
|
int64 user_id = 1;
|
|
|
|
|
message OauthProviderInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string created_at = 2;
|
|
|
|
|
string updated_at = 3;
|
|
|
|
|
string name = 4;
|
|
|
|
|
string client_id = 5;
|
|
|
|
|
string client_secret = 6;
|
|
|
|
|
string redirect_url = 7;
|
|
|
|
|
string scopes = 8;
|
|
|
|
|
string auth_url = 9;
|
|
|
|
|
string token_url = 10;
|
|
|
|
|
string info_url = 11;
|
|
|
|
|
string description = 12;
|
|
|
|
|
bool system = 13;
|
|
|
|
|
bool init = 14;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message UserSocialListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated UserSocialInfo data = 2;
|
|
|
|
|
message OauthLoginReq {
|
|
|
|
|
string state = 1;
|
|
|
|
|
string provider = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message GetDistrictNameResp {
|
|
|
|
|
string code = 1;
|
|
|
|
|
string name = 2;
|
|
|
|
|
repeated string name_list = 3;
|
|
|
|
|
message TokenUserReq {
|
|
|
|
|
int64 user_id = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message TokenReq {
|
|
|
|
@ -228,18 +263,32 @@ message TokenReq {
|
|
|
|
|
optional Pagination page = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message UserReq {
|
|
|
|
|
message TokenListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated TokenInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DictionaryDetailReq {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
int64 ID = 2;
|
|
|
|
|
int64 dict_id = 3;
|
|
|
|
|
string title = 4;
|
|
|
|
|
string key = 5;
|
|
|
|
|
string value = 6;
|
|
|
|
|
bool with_dictionary = 7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DictionaryReq {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string username = 2;
|
|
|
|
|
string phone_number = 3;
|
|
|
|
|
string email = 4;
|
|
|
|
|
string nickname = 5;
|
|
|
|
|
bool with_role = 6;
|
|
|
|
|
bool with_social = 7;
|
|
|
|
|
bool with_department = 8;
|
|
|
|
|
bool with_token = 9;
|
|
|
|
|
bool with_login_record = 10;
|
|
|
|
|
optional Pagination page = 20;
|
|
|
|
|
string name = 2;
|
|
|
|
|
string title = 3;
|
|
|
|
|
bool with_details = 4;
|
|
|
|
|
optional Pagination page = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message RoleListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated RoleInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message UserSocialInfo {
|
|
|
|
@ -259,44 +308,49 @@ message UserSocialInfo {
|
|
|
|
|
UserInfo user = 14;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message TokenListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated TokenInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message UserListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated UserInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 基础回执
|
|
|
|
|
message BaseResp {
|
|
|
|
|
int32 code = 1;
|
|
|
|
|
string msg = 2;
|
|
|
|
|
message DepartmentReq {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string name = 2;
|
|
|
|
|
int64 leader_id = 3;
|
|
|
|
|
int64 parent_id = 4;
|
|
|
|
|
bool with_leader = 5;
|
|
|
|
|
bool with_user = 6;
|
|
|
|
|
bool with_children = 7;
|
|
|
|
|
optional Pagination page = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DeleteDictionaryDetailReq {
|
|
|
|
|
repeated int64 ids = 1;
|
|
|
|
|
int64 dict_id = 2;
|
|
|
|
|
// 基础回执带ID
|
|
|
|
|
message BaseIDResp {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
int32 code = 2;
|
|
|
|
|
string msg = 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message RecordReq {
|
|
|
|
|
int64 user_id = 1;
|
|
|
|
|
message DictionaryListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated DictionaryInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message OauthRedirectResp {
|
|
|
|
|
string url = 1;
|
|
|
|
|
// DistrictInfo 地址单体结构
|
|
|
|
|
message DistrictInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string created_at = 2;
|
|
|
|
|
string updated_at = 3;
|
|
|
|
|
string name = 4;
|
|
|
|
|
string short_name = 5;
|
|
|
|
|
string code = 6;
|
|
|
|
|
string province = 7;
|
|
|
|
|
string city = 8;
|
|
|
|
|
string area = 9;
|
|
|
|
|
string street = 10;
|
|
|
|
|
uint32 level = 11;
|
|
|
|
|
double latitude = 12;
|
|
|
|
|
double longitude = 13;
|
|
|
|
|
repeated DistrictInfo children = 20;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message RoleInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string status = 2;
|
|
|
|
|
string created_at = 3;
|
|
|
|
|
string updated_at = 4;
|
|
|
|
|
string code = 5;
|
|
|
|
|
string name = 6;
|
|
|
|
|
string description = 7;
|
|
|
|
|
repeated UserInfo users = 10;
|
|
|
|
|
message DistrictTree {
|
|
|
|
|
repeated DistrictInfo tree = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message RoleReq {
|
|
|
|
@ -307,49 +361,28 @@ message RoleReq {
|
|
|
|
|
optional Pagination page = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DictionaryDetailInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string status = 2;
|
|
|
|
|
string created_at = 3;
|
|
|
|
|
string updated_at = 4;
|
|
|
|
|
string title = 5;
|
|
|
|
|
string key = 6;
|
|
|
|
|
string value = 7;
|
|
|
|
|
uint32 sort = 8;
|
|
|
|
|
int64 dictionary_id = 9;
|
|
|
|
|
DictionaryInfo dictionary = 10;
|
|
|
|
|
message UserListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated UserInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DistrictListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated DistrictInfo data = 2;
|
|
|
|
|
message IDsReq {
|
|
|
|
|
repeated int64 ids = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message OauthProviderReq {
|
|
|
|
|
message IDReq {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string name = 2;
|
|
|
|
|
string client_id = 3;
|
|
|
|
|
optional bool system = 4;
|
|
|
|
|
optional bool init = 5;
|
|
|
|
|
optional Pagination page = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message UserInfo {
|
|
|
|
|
message RoleInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string status = 2;
|
|
|
|
|
string created_at = 3;
|
|
|
|
|
string updated_at = 4;
|
|
|
|
|
string username = 5;
|
|
|
|
|
optional string phone_number = 6;
|
|
|
|
|
optional string email = 7;
|
|
|
|
|
string password = 8;
|
|
|
|
|
optional string nickname = 9;
|
|
|
|
|
map<string,string> metas = 10;
|
|
|
|
|
repeated RoleInfo roles = 20;
|
|
|
|
|
repeated UserSocialInfo socials = 21;
|
|
|
|
|
repeated DepartmentInfo departments = 22;
|
|
|
|
|
repeated TokenInfo tokens = 23;
|
|
|
|
|
LoginRecordInfo login_record = 24;
|
|
|
|
|
string code = 5;
|
|
|
|
|
string name = 6;
|
|
|
|
|
string description = 7;
|
|
|
|
|
repeated UserInfo users = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message UserSocialReq {
|
|
|
|
@ -364,41 +397,8 @@ message UserSocialReq {
|
|
|
|
|
optional Pagination page = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message IDsReq {
|
|
|
|
|
repeated int64 ids = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 基础回执带ID
|
|
|
|
|
message BaseIDResp {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
int32 code = 2;
|
|
|
|
|
string msg = 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DepartmentInfo {
|
|
|
|
|
int64 ID = 1;
|
|
|
|
|
string status = 2;
|
|
|
|
|
string created_at = 3;
|
|
|
|
|
string updated_at = 4;
|
|
|
|
|
string name = 5;
|
|
|
|
|
int64 leader_id = 6;
|
|
|
|
|
string remark = 7;
|
|
|
|
|
int64 parent_id = 8;
|
|
|
|
|
DepartmentInfo parent = 10;
|
|
|
|
|
repeated DepartmentInfo children = 11;
|
|
|
|
|
repeated UserInfo users = 12;
|
|
|
|
|
UserInfo leader = 13;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message DictionaryListResp {
|
|
|
|
|
optional Pagination page = 1;
|
|
|
|
|
repeated DictionaryInfo data = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message CallbackReq {
|
|
|
|
|
string state = 1;
|
|
|
|
|
string code = 2;
|
|
|
|
|
}
|
|
|
|
|
// Base message
|
|
|
|
|
message Empty {}
|
|
|
|
|
|
|
|
|
|
service Core {
|
|
|
|
|
// group: base
|
|
|
|
@ -420,9 +420,9 @@ service Core {
|
|
|
|
|
// group: dictionary
|
|
|
|
|
rpc updateDictionary(DictionaryInfo) returns (BaseResp);
|
|
|
|
|
// group: dictionary
|
|
|
|
|
rpc getDictionaryList(UserReq) returns (UserListResp);
|
|
|
|
|
rpc getDictionaryList(DictionaryReq) returns (DictionaryListResp);
|
|
|
|
|
// group: dictionary
|
|
|
|
|
rpc getDictionary(UserReq) returns (DictionaryInfo);
|
|
|
|
|
rpc getDictionary(DictionaryReq) returns (DictionaryInfo);
|
|
|
|
|
// group: dictionary
|
|
|
|
|
rpc deleteDictionary(IDsReq) returns (BaseResp);
|
|
|
|
|
// Details
|
|
|
|
|