syntax = "proto3"; import "v1/system.proto"; // package声明符,用来防止不同的消息类型有命名冲突 package pb.service; // 用于生成指定语言go的包名称 option go_package = "property-task/pb"; // The system service definition. service System { rpc GardenIds(pb_v1.GardenIdsRequest) returns (pb_v1.GardenIdsReply){} // 短信套餐相关 rpc MsgPackageOrderList(pb_v1.MsgPackageOrderListRequest) returns (pb_v1.MsgPackageOrderListReply){} rpc MsgPackageOrderDecrease(pb_v1.MsgPackageOrderDecreaseRequest) returns (pb_v1.MsgPackageOrderDecreaseReply){} }