cmbYouku_Api/app/service/ProductMapService.php

18 lines
283 B
PHP
Raw Permalink Normal View History

2024-07-01 15:57:07 +08:00
<?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);
}
}