app-cloudep-order-server/generate/protobuf/order.proto

24 lines
426 B
Protocol Buffer
Raw Normal View History

2024-10-05 06:55:28 +00:00
syntax = "proto3";
package tweeting;
option go_package = "./tweeting";
// ========== 基本回應 ===========
message OKResp {}
// 空的請求
message NoneReq {}
// 分頁信息
message Pager
{
int64 total = 1; // 總數量
int64 size = 2; // 每頁數量
int64 index = 3; // 當前頁碼
}
// ========== 貼文區 ===========
// OrderService 訂單服務(業務邏輯在外面組合)
service OrderService{}