Files
fc/server/tools/gen_data/cfg/drama_story_data.erl
T
2026-05-23 22:10:14 +08:00

44 lines
968 B
Erlang

%%%-------------------------------------------------------------------
%%% @author caocg
%%% @copyright (C) 2021, <COMPANY>
%%% @doc
%%%
%%% @end
%%% Created : 22. 11月 2021 17:45
%%%-------------------------------------------------------------------
-module(drama_story_data).
-include("data_config.hrl").
-export([cfg/0]).
cfg() ->
#data_cfg{
name = drama_story_data
, lua_name = drama_story_data
, desc = ""
, source = "drama_story_data.xml"
, target = ""
, inc = []
, callback =
[
]
, callback_cli =
[
]
, callback_json =
[
{get, cb_fun_json, handle, {key_val, ["BOSS页"], [dungenonid], [id, name]}}
]
, sheet =
[
{["BOSS页"], [
#f_column{type = int, name = dungenonid , desc = "关卡ID", mod = client}
,#f_column{type = int, name = id, desc = "BOSSID", mod = client}
,#f_column{type = bstr, name = name, desc = "BOSS名", mod = client}
]}
]
}.