Files
hyperf_service/app/Service/Admin/Print/PrintOrderInterface.php
2025-03-12 17:26:11 +08:00

20 lines
316 B
PHP

<?php
/**
* This service file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
*/
declare(strict_types=1);
namespace App\Service\Admin\Print;
interface PrintOrderInterface
{
public function printList();
public function printSingleOrder();
public function printCancel();
}