%%%------------------------------------------------------------------- %%% @author caocg %%% @copyright (C) 2021, %%% @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} ]} ] }.