28 lines
737 B
PHP
28 lines
737 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | saiadmin [ saiadmin快速开发框架 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Author: your name
|
|
// +----------------------------------------------------------------------
|
|
namespace app\dice\logic\lottery_config;
|
|
|
|
use plugin\saiadmin\basic\think\BaseLogic;
|
|
use plugin\saiadmin\exception\ApiException;
|
|
use plugin\saiadmin\utils\Helper;
|
|
use app\dice\model\lottery_config\DiceLotteryConfig;
|
|
|
|
/**
|
|
* 色子奖池配置逻辑层
|
|
*/
|
|
class DiceLotteryConfigLogic extends BaseLogic
|
|
{
|
|
/**
|
|
* 构造函数
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->model = new DiceLotteryConfig();
|
|
}
|
|
|
|
}
|