|
|
@ -25,7 +25,12 @@ service BaseGlobalManage {
|
|
|
|
//查询(分页)
|
|
|
|
//查询(分页)
|
|
|
|
rpc PageBaseGlobal (QueryArg) returns (Reply) {}
|
|
|
|
rpc PageBaseGlobal (QueryArg) returns (Reply) {}
|
|
|
|
//根据全局变量编码获取全局变量值
|
|
|
|
//根据全局变量编码获取全局变量值
|
|
|
|
rpc GetBaseGlobalByCode (ModelArg) returns (Reply) {}
|
|
|
|
rpc GetBaseGlobalByCodes (GlobalCodesArg) returns (Reply) {}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
message GlobalCodesArg {
|
|
|
|
|
|
|
|
//一个或多个Code
|
|
|
|
|
|
|
|
repeated string GlobalCodes = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message ModelArg {
|
|
|
|
message ModelArg {
|
|
|
|