| 1234567891011121314151617181920212223242526 |
- <?php
- namespace crmeb\services\async;
- use crmeb\services\async\LuckyCalc;
- use think\facade\Config;
- class LuckyExtBCalc extends LuckyCalc {
- protected static $NAME = 'lucky_b';
- protected function getId() {
- return Config::get('activity.lucky_b_cate_id');
- }
- protected function getName() {
- return self::$NAME;
- }
- protected function getNameCN() {
- return '番外B';
- }
- protected function repRate() {
- return 0.4;
- }
- }
|