This commit is contained in:
zhangchenbiao
2023-06-14 10:46:42 +08:00
parent b9cab477e9
commit 81516f1fe2
7 changed files with 36 additions and 0 deletions

View File

@@ -240,6 +240,12 @@ public class ISVHttpRequest {
return null;
}
/**
* 更新飞书日程
* @param param
* @return
* @throws ApiException
*/
public UserCalendarsEventDTO updateUserCalendarEvent(UpdateCalendarEventDTO param) throws ApiException{
String url = isvDomain + "/isv/user/updateUserCalendarEvent";
ResultDTO responseEntity = null;
@@ -256,6 +262,12 @@ public class ISVHttpRequest {
return null;
}
/**
* 取消飞书日程
* @param param
* @return
* @throws ApiException
*/
public UserCalendarsEventDTO deleteUserCalendarEvent(DeleteCalendarEventDTO param) throws ApiException {
String url = isvDomain + "/isv/user/deleteUserCalendarEvent";
ResultDTO responseEntity = null;