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.

163 lines
5.3 KiB

1 month ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Reflection;
namespace Sog
{
public enum ActivityLogType
{
ActivityPoint = 1, // 开服积分活动
Recharge = 2, // 充值活动
TimeLimit = 3, // 7日活动
BaseActivity = 4, // 基础活动
}
public enum BillLogType
{
// 登录日志,帐号信息,用户id,登录次数,等级,筹码
// 从1000开始,方便grep
Login = 1000,
// 登出
Logout = 1001,
// googlepay,请求账单
PayGoogleReq = 1002,
PayGoogleRes = 1003,
// 请求加钻石
PayGoogleSuccessReq = 1004,
PayGoogleSuccessRes = 1005,
//钻石换筹码
DiamondChipExchange = 1006,
// 领取免费礼包
PayFreeGiftPack = 1007,
//钻石改变
ChangeDiamond = 1010,
ChangeChip = 1011,
ChangeItem = 1012,
//ping
PingInfo = 1020,
//举报
TipOffPlayer = 1021,
//禁言
GagChat = 1022,
//隐藏个人信息
HideMyInfo = 1023,
//mail
MailOpBegin = 1030,
MailOpRet = 1031,
MailSendToPlayer = 1032,//发邮件给玩家
//exchange
ExchangeCouponDbReq = 1040,
ExchangeCouponDbRes = 1041,
ExchangeCouponDiamond = 1042,//直接换成钻石
//新手引导
FinishNewbieReq = 1050,
//完成新手引导的某一步
FinishNewbieStep = 1051,
//客户端上报Bill
CliReportBill = 1055,
//断线重连
AgainConnect = 1060,
//分享记录
ShareFacebook = 1070,
InviteFacebook = 1072,
InviteMeUidBindSuccess = 1073, //绑定邀请我的uid成功
ShareDeeplink = 1074, //发送深度链接分享
FriendGift = 1089, // 好友礼物
FriendList = 1091, //好友列表数量
FreezePlayer = 1122,
CheatPlayer = 1123, //作弊
AddLevel = 1124, // 升级
VipCardNotLoginPush = 1139, //vip会员未登录推送
WebFirebasePush = 1140, // web推送
WebSysNoticeLamp = 1141, // web走马灯
RetentionOptimizetion = 1142, // 留存优化
ChatData = 1160, //聊天数据
VersionCheck = 1215,
LoginNotice = 1216,
DrawLoopGroupId = 1217,
PGSuperEvolve = 1218,
OssPlayerData = 1219,
FakePay = 2000, // 支付测试
SendMsgToPlayer = 2001, //服务发给客户端消息(某些特殊消息需要记录bill日志,方便查问题)
//Online Player
OnlinePlayer = 3001,
PlayerPhoneInfo = 4001, //玩家安装游戏时返回的数据
LinkClickCount = 5001, //玩家分享的链接被点击次数,http深度链接,operationserver上报
}
public static class BillChangeItemReason
{
public static string PlayerBorn = "PlayerBorn"; //初始携带物品
public static string Pay = "Pay";
public static string InviteSnsFriendAward = "InviteSnsFriendAward"; //每日邀请sns好友到的奖励
public static string GetItemMail = "GetItemMail"; //从邮件中取物品
public static string GmCmd = "GmCmd";//gm
public static string SendMailToPlayer = "SendMailToPlayer"; // 玩家发送邮件
public static string BanUser = "BanUser"; //封号时,清除背包电话卡
public static string DiamondRename = "DiamondRename"; //改名
public static string RefreshMarketShop = "RefreshMarketShop"; //刷新商店
public static string BuyMarketShopGoods = "BuyMarketShopGoods"; //购买商店物品
public static string TaskEXReward = "TaskEXReward"; // 任务EX奖励
public static string BatchTaskEXReward = "TaskEXReward"; // 任务EX奖励
public static string RecvFriendGift = "RecvFriendGift"; // 领取好友礼物
public static string ExchangeCodeRewards = "ExchangeCodeRewards";//兑换码奖励
public static string Equipment = "Equipment";//equip
//活动
public static string OssPlayerData = "OssPlayerData"; //oss 操作
public static string HomeAD = "HomeAD"; // 首页广告
public static string Bag = "Bag"; //背包
public static string CHAPTER = "chapter";//章节
public static string Mop = "扫荡";//章节
public static string GemCompose = "GemCompose";
public static string GemComposeOne = "GemComposeOne";
public static string Wings = "wings";
public static string Preset = "Preset";
public static string Reward = "Reward";
public static string CBC = "cbattle";//boss战
public static string FirstPayment = "FirstPayment";
public static string FreeRewardSvc = "FreeRewardSvc";
public static string RecruitAdv = "Recruit.Adv";
public static string Recruit = "Recruit";
public static string HandBook = "HandBook";
public static string MonthlyFree = "MonthlyFree";
public static string MonthlyCard = "MonthlyCard";
public static string SignDailyAct = "SignDailyAct";
public static string BattlePass = "BattlePass";
public static string Power = "Power";
}
}