18 lines
225 B
PHP
18 lines
225 B
PHP
<?php
|
|
namespace App\Domains\Card\Services;
|
|
|
|
use App\Core\Service;
|
|
|
|
class CardService extends Service
|
|
{
|
|
/**
|
|
* 构造函数
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
}
|