正在显示
5 个修改的文件
包含
20 行增加
和
9 行删除
| @@ -9,14 +9,12 @@ | @@ -9,14 +9,12 @@ | ||
| 9 | 9 | ||
| 10 | namespace App\Console\Commands\Suppliers; | 10 | namespace App\Console\Commands\Suppliers; |
| 11 | 11 | ||
| 12 | -use App\Models\Com\Purchaser; | ||
| 13 | use App\Models\Product\Keyword; | 12 | use App\Models\Product\Keyword; |
| 14 | use App\Models\Project\DeployBuild; | 13 | use App\Models\Project\DeployBuild; |
| 15 | -use App\Models\Project\Project; | 14 | +use App\Models\Purchaser\Purchaser; |
| 16 | use App\Services\ProjectServer; | 15 | use App\Services\ProjectServer; |
| 17 | use Illuminate\Console\Command; | 16 | use Illuminate\Console\Command; |
| 18 | use Illuminate\Support\Facades\DB; | 17 | use Illuminate\Support\Facades\DB; |
| 19 | -use Illuminate\Support\Facades\Log; | ||
| 20 | 18 | ||
| 21 | class RecommendedSuppliers extends Command | 19 | class RecommendedSuppliers extends Command |
| 22 | { | 20 | { |
| @@ -6,10 +6,7 @@ use App\Enums\Common\Code; | @@ -6,10 +6,7 @@ use App\Enums\Common\Code; | ||
| 6 | use App\Helper\Arr; | 6 | use App\Helper\Arr; |
| 7 | use App\Helper\Common; | 7 | use App\Helper\Common; |
| 8 | use App\Http\Controllers\Bside\BaseController; | 8 | use App\Http\Controllers\Bside\BaseController; |
| 9 | -use App\Http\Logic\Aside\Project\ProjectLogic; | ||
| 10 | -use App\Http\Logic\Bside\User\UserLogic; | ||
| 11 | use App\Jobs\PurchaserJob; | 9 | use App\Jobs\PurchaserJob; |
| 12 | -use App\Models\Com\Purchaser; | ||
| 13 | use App\Models\CustomModule\CustomModule; | 10 | use App\Models\CustomModule\CustomModule; |
| 14 | use App\Models\Project\DeployBuild; | 11 | use App\Models\Project\DeployBuild; |
| 15 | use App\Models\Project\Project; | 12 | use App\Models\Project\Project; |
| @@ -18,7 +15,6 @@ use App\Models\User\ProjectMenu as ProjectMenuModel; | @@ -18,7 +15,6 @@ use App\Models\User\ProjectMenu as ProjectMenuModel; | ||
| 18 | use App\Models\User\ProjectRole as ProjectRoleModel; | 15 | use App\Models\User\ProjectRole as ProjectRoleModel; |
| 19 | use App\Models\User\User; | 16 | use App\Models\User\User; |
| 20 | use Illuminate\Support\Facades\Cache; | 17 | use Illuminate\Support\Facades\Cache; |
| 21 | -use Illuminate\Support\Facades\Hash; | ||
| 22 | 18 | ||
| 23 | /*** | 19 | /*** |
| 24 | * 当前为公共类 | 20 | * 当前为公共类 |
| @@ -11,7 +11,7 @@ namespace App\Http\Controllers\Bside\Suppliers; | @@ -11,7 +11,7 @@ namespace App\Http\Controllers\Bside\Suppliers; | ||
| 11 | 11 | ||
| 12 | use App\Enums\Common\Code; | 12 | use App\Enums\Common\Code; |
| 13 | use App\Http\Controllers\Bside\BaseController; | 13 | use App\Http\Controllers\Bside\BaseController; |
| 14 | -use App\Models\Com\Purchaser; | 14 | +use App\Models\Purchaser\Purchaser; |
| 15 | 15 | ||
| 16 | /** | 16 | /** |
| 17 | * @remark :推荐采购商 | 17 | * @remark :推荐采购商 |
app/Models/Purchaser/PurchaserInfo.php
0 → 100644
| 1 | +<?php | ||
| 2 | +/** | ||
| 3 | + * @remark : | ||
| 4 | + * @name :PurchaserInfo.php | ||
| 5 | + * @author :lyh | ||
| 6 | + * @method :post | ||
| 7 | + * @time :2024/5/29 16:57 | ||
| 8 | + */ | ||
| 9 | + | ||
| 10 | +namespace App\Models\Purchaser; | ||
| 11 | + | ||
| 12 | +use App\Models\Base; | ||
| 13 | + | ||
| 14 | +class PurchaserInfo extends Base | ||
| 15 | +{ | ||
| 16 | + protected $table = 'gl_purchaser_info'; | ||
| 17 | +} |
-
请 注册 或 登录 后发表评论