18 lines
283 B
PHP
18 lines
283 B
PHP
|
<?php
|
||
|
declare (strict_types=1);
|
||
|
|
||
|
namespace app\service;
|
||
|
|
||
|
use app\model\ProductMap;
|
||
|
|
||
|
/**
|
||
|
* @author canny
|
||
|
* @date 2024/3/11 10:17
|
||
|
**/
|
||
|
class ProductMapService extends BaseService
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->model = app()->make(ProductMap::class);
|
||
|
}
|
||
|
}
|