| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace app\v1\logic\advert;
- use plugin\saiadmin\basic\BaseLogic;
- use plugin\saiadmin\exception\ApiException;
- use plugin\saiadmin\utils\Helper;
- use app\v1\model\advert\GamePackLog;
- use Illuminate\Support\Facades\Date;
- use plugin\saiadmin\service\OpenSpoutWriter;
- /**
- * 打包记录逻辑层
- */
- class GamePackLogLogic extends BaseLogic
- {
- /**
- * 构造函数
- */
- public function __construct()
- {
- $this->model = new GamePackLog();
- }
-
- /**
- * 批量打包
- */
- public function batchSave($data): int
- {
- return $this->model->insertAll($data);
- }
- }
|