123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace loyalsoft;
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- class Enum_TargetStatistics {
- /**
- * 注册人数
- */
- const registerUserNum = 1;
-
- /**
- * 完成新手引导人数
- */
- const comNewGuide_UserNum = 2;
-
- /**
- * 解锁该建筑id的人数
- */
- const unlockbuidId = 3;
-
- /**
- * 主线任务id--完成人数
- */
- const mainTaskId_ComUserNum = 4;
-
- /**
- * 悬赏任务_已经完成任务id的人数
- */
- const shopTaskId_ComUserNum = 5;
-
- /**
- * 悬赏任务id购买人数
- */
- const shopTaskId_BuyUserNum = 6;
-
- /**
- * 学院课程id_解锁人数
- */
- const collegeTaskId_ComUserNum = 7;
-
- /**
- * 学院课程id_解锁人数
- */
- const collegeCouseId_UnlockUserNum = 8;
-
- /**
- * 日常任务id--完成人数
- */
- const dailyTaskId_ComUserNum = 9;
- //学院任务_完成任务id人数
- }
|