mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-01-04 10:06:34 +08:00
22 lines
552 B
Protocol Buffer
22 lines
552 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "model_region_province.proto";
|
|
|
|
// 省份相关服务
|
|
service RegionProvinceService {
|
|
// 查找所有省份
|
|
rpc findAllEnabledRegionProvincesWithCountryId (FindAllEnabledRegionProvincesWithCountryIdRequest) returns (FindAllEnabledRegionProvincesWithCountryIdResponse);
|
|
}
|
|
|
|
// 查找所有省份
|
|
message FindAllEnabledRegionProvincesWithCountryIdRequest {
|
|
int64 countryId = 1;
|
|
}
|
|
|
|
message FindAllEnabledRegionProvincesWithCountryIdResponse {
|
|
repeated RegionProvince provinces = 1;
|
|
}
|