hyperf-gateway/app/JsonRpc/PunchCardSystemExternalServiceInterface.php

16 lines
313 B
PHP
Raw Normal View History

<?php
namespace App\JsonRpc;
use Hyperf\HttpServer\Contract\RequestInterface;
interface PunchCardSystemExternalServiceInterface
{
/**
* 保存问题反馈
*
* @param RequestInterface $request
* @return array
*/
public function saveFeedback(RequestInterface $request) : array;
}