12 lines
266 B
Erlang
12 lines
266 B
Erlang
|
|
%%----------------------------------------------------
|
||
|
|
%% 此文件由数据工具生成 secretary_data.xml
|
||
|
|
%% ÃØÊéÅäÖÃ
|
||
|
|
%%----------------------------------------------------
|
||
|
|
-module(secretary_data).
|
||
|
|
-export([
|
||
|
|
get/1
|
||
|
|
]).
|
||
|
|
-include("common.hrl").
|
||
|
|
|
||
|
|
|
||
|
|
get(_)->10.
|