Files

27 lines
900 B
Erlang
Raw Permalink Normal View History

2026-05-23 22:10:14 +08:00
%%----------------------------------------------------
%% 回归活动数据配置文件
%% @author yzq
%%----------------------------------------------------
-module(holiday_rebirth_data).
-export([cfg/0]).
-include("data_config.hrl").
-include("common.hrl").
cfg() ->
#data_cfg{
name = holiday_rebirth_data
,lua_name = holiday_rebirth_data
,desc = "重生活动名单配置数据"
,source = "holiday_rebirth_data.xml"
,target = "holiday_rebirth_data.erl"
,inc = ["common.hrl"]
,callback = [
{{get_rid, "0"}, cb_fun, handle, {get_fun, ["凤凰重生名单"], "get_rid(~s) -> 1;", [rid]}}
]
,callback_cli = [
]
,sheet = [
{["凤凰重生名单"], [
#f_column{type = term, name = rid, desc = "角色ID", add_list_sign = false, mod = all}
]}
]
}.