| 1234567891011121314151617181920212223 |
- namespace ET
- {
- public class OpenServerRebateComponent : Entity, IAwake, IDestroy, ITransfer, IUnitCache
- {
- //从后台同步数据的次数
- public int SyncGmNumSuit;
- //从后台同步数据的次数
- public int SyncGmNumPay;
- //是否是老用户
- public bool IsOldAccount;
- //之前付费测付费的额度
- public long TotalCoin;
- //是否已经发放老用户返利套装
- public bool IsSendSuitReward;
- //是否已经发放老用户充值奖励
- public bool IsSendPayReward;
- }
- }
|