LiveClient.java 798 B

12345678910111213141516171819202122232425262728
  1. package com.fdkankan.tk.httpClient.client;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.dtflys.forest.annotation.*;
  4. import com.fdkankan.tk.httpClient.address.FdkkAddressSource;
  5. import com.fdkankan.tk.httpClient.request.WxGetPhoneParam;
  6. import com.fdkankan.tk.httpClient.request.WxGetQrCodeParam;
  7. import com.fdkankan.tk.httpClient.response.WxOpenIdVo;
  8. /**
  9. * 获取,调用4dkk服务
  10. */
  11. @Address(source = FdkkAddressSource.class)
  12. public interface LiveClient {
  13. /**
  14. * 获取 弹幕列表
  15. */
  16. @Get("/service/room-manager/danmaku/{wxRoomId}")
  17. JSONObject getDanmaku(@Var("wxRoomId") String wxRoomId);
  18. /**
  19. * 删除 弹幕列表
  20. */
  21. @Get("/service/room-manager/danmaku/delete/{wxRoomId}")
  22. JSONObject deleteDanmaku(@Var("wxRoomId") String wxRoomId);
  23. }