作者 lyh

gx

... ... @@ -9,14 +9,12 @@
namespace App\Console\Commands\Suppliers;
use App\Models\Com\Purchaser;
use App\Models\Product\Keyword;
use App\Models\Project\DeployBuild;
use App\Models\Project\Project;
use App\Models\Purchaser\Purchaser;
use App\Services\ProjectServer;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Log;
class RecommendedSuppliers extends Command
{
... ...
... ... @@ -6,10 +6,7 @@ use App\Enums\Common\Code;
use App\Helper\Arr;
use App\Helper\Common;
use App\Http\Controllers\Bside\BaseController;
use App\Http\Logic\Aside\Project\ProjectLogic;
use App\Http\Logic\Bside\User\UserLogic;
use App\Jobs\PurchaserJob;
use App\Models\Com\Purchaser;
use App\Models\CustomModule\CustomModule;
use App\Models\Project\DeployBuild;
use App\Models\Project\Project;
... ... @@ -18,7 +15,6 @@ use App\Models\User\ProjectMenu as ProjectMenuModel;
use App\Models\User\ProjectRole as ProjectRoleModel;
use App\Models\User\User;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Hash;
/***
* 当前为公共类
... ...
... ... @@ -11,7 +11,7 @@ namespace App\Http\Controllers\Bside\Suppliers;
use App\Enums\Common\Code;
use App\Http\Controllers\Bside\BaseController;
use App\Models\Com\Purchaser;
use App\Models\Purchaser\Purchaser;
/**
* @remark :推荐采购商
... ...
... ... @@ -7,7 +7,7 @@
* @time :2024/3/4 14:39
*/
namespace App\Models\Com;
namespace App\Models\Purchaser;
use App\Models\Base;
... ...
<?php
/**
* @remark :
* @name :PurchaserInfo.php
* @author :lyh
* @method :post
* @time :2024/5/29 16:57
*/
namespace App\Models\Purchaser;
use App\Models\Base;
class PurchaserInfo extends Base
{
protected $table = 'gl_purchaser_info';
}
... ...