24 lines
426 B
Protocol Buffer
24 lines
426 B
Protocol Buffer
|
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{}
|