Commit 78ba6857 authored by carlos's avatar carlos

飞书rpc接口

parent 46dfe8d4
<?php
namespace Meibuyu\Rpc\Service\Interfaces\FeiShu;
interface FeiShuMessageServiceInterface
{
/**
* Notes: 批量发送消息
* User: carlos
* DateTime: 2021/12/15 17:31
* @param array $userIds
* @param string $template
* @param array $data
* @return mixed
*/
public function batchSendMsg(array $userIds, string $template, array $data);
}
\ No newline at end of file
<?php
namespace Meibuyu\Rpc\Service\Interfaces\FeiShu;
Interface FeiShuUserServiceInterface
{
/**
* Notes: 通过手机号码 获取飞书用户ID
* User: carlos
* DateTime: 2021/12/15 13:50
* @param string $phone
* @return mixed
*/
public function getUserIdByPhone(array $phone);
/**
* Notes: 获取部门用户
* User: carlos
* DateTime: 2021/12/15 13:51
* @return mixed
*/
public function getUserList();
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment