1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Created by PhpStorm.
- * User: stanley-king
- * Date: 2017/9/28
- * Time: 上午10:16
- */
- defined('InShopNC') or exit('Access Invalid!');
- require_once(BASE_ROOT_PATH . '/helper/notify_helper.php');
- require_once(BASE_ROOT_PATH . '/helper/stat_helper.php');
- require_once(BASE_ROOT_PATH . '/helper/predeposit_helper.php');
- require_once(BASE_DATA_PATH . '/mobile/omsid.php');
- require_once(BASE_ROOT_PATH . '/helper/bonus_helper.php');
- require_once(BASE_ROOT_PATH . '/helper/bonus/witholder.php');
- require_once(BASE_ROOT_PATH . '/helper/notify_helper.php');
- require_once(BASE_ROOT_PATH . '/data/mobile/lrlz_staff.php');
- class commandControl extends BaseCronControl
- {
- public function __construct()
- {
- parent::__construct();
- }
- //中秋节给员工发红包
- public function zqbonusOp()
- {
- $staffs = lrlz_staff();
- $type_sn = '76341506502791044726';
- bonus_helper::send_mobile($type_sn,$staffs,2);
- }
- }
|