Files
fc/server/tools/gen_proto/cfg/proto_263.erl
T

42 lines
1.1 KiB
Erlang
Raw Normal View History

2026-05-23 22:10:14 +08:00
%%----------------------------------------------------
%% 个人推送礼包
%%
%% @author wujinhan<947537249@qq.com>
%%----------------------------------------------------
-module(proto_263).
-export([info/0, cfg/0]).
-include("protocol.hrl").
info() -> {
"宠物出行"
,["common.hrl", "quest.hrl"]
}.
-spec cfg() -> [#rpc{}].
cfg() ->
[
#rpc{
code = 26300
,log_title = "个人推送礼包基础信息"
,req_desc = "个人推送礼包基础信息"
,req = [
]
,reply_desc = "个人推送礼包基础信息"
,reply = [
{uint32, end_time, "结束时间"}
,{uint8, count, "已购买次数"}
,{uint32, award_id, "礼包id"}
]
}
,#rpc{
code = 26301
,log_title = "是否匹配到个推礼包"
,req_desc = "是否匹配到个推礼包"
,req = [
]
,reply_desc = "是否匹配到个推礼包"
,reply = [
{uint8, flag, "是否有礼包(0:否,1:是)"}
]
}
].