源战役
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 regels
629 B

%%%-------------------------------------------------------------------
%%% @author liushl
%%% @doc
%%% 消费记录头文件
%%% @end
%%%-------------------------------------------------------------------
-record(role_consume, {
consume_data = [] %% 玩家所有消费数据
, save_time = 0 %% 上次保存时间
}).
-record(consume_data, {
date = 0 %% 消费当天0点时间戳
, gold = 0 %% 当天消费元宝-- 彩钻
, bgold = 0 %% 当前消费绑元-- 红钻
, coin = 0 %% 今日消耗铜钱-- 交易券
, update= false %% 是否更新
}).