2022-11-15 16:33:33 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\JsonRpc;
|
|
|
|
|
|
|
|
use Hyperf\HttpServer\Contract\RequestInterface;
|
|
|
|
|
|
|
|
interface PunchCardSystemExternalServiceInterface
|
|
|
|
{
|
2022-11-16 15:57:58 +08:00
|
|
|
/**
|
|
|
|
* 获取问题反馈类型列表
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getFeedbackTypeList() : array;
|
|
|
|
|
2022-11-15 16:33:33 +08:00
|
|
|
/**
|
|
|
|
* 保存问题反馈
|
|
|
|
*
|
|
|
|
* @param RequestInterface $request
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function saveFeedback(RequestInterface $request) : array;
|
|
|
|
}
|