You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
955 B
41 lines
955 B
<?php
|
|
declare (strict_types=1);
|
|
|
|
namespace app\job\service\goods;
|
|
|
|
use app\common\library\helper;
|
|
use app\common\service\BaseService;
|
|
use app\common\model\Goods as GoodsModel;
|
|
use app\common\model\GoodsSku;
|
|
use app\store\model\GoodsCategoryRel;
|
|
use cores\exception\BaseException;
|
|
use think\facade\Log;
|
|
use app\common\service\GoodsCateEs;
|
|
|
|
/**
|
|
* 批量同步到es
|
|
* Class Import
|
|
* @package app\job\service\goods
|
|
*/
|
|
class GoodsRealDelete extends BaseService
|
|
{
|
|
/**
|
|
* 批量同步到es
|
|
* @param array $list
|
|
* @param int $recordId
|
|
* @param int $storeId
|
|
* @return bool
|
|
* @throws BaseException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function batch(array $goodsIds): bool
|
|
{
|
|
$obj = new GoodsCateEs();
|
|
$obj->batchDelete($goodsIds);
|
|
return true;
|
|
}
|
|
|
|
|
|
} |