1234567891011121314151617 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Elton
- * Date: 2019/11/22
- * Time: 下午3:44
- */
- namespace app\main\constants;
- class ConsumeConstants
- {
- const CONSUME_TYPE_ARTICLE = 1;
- const CONSUME_TYPE_REWARDS = 2;
- const CONSUME_TYPE_CAMPAIGN = 3;
- }
|