LiveClient.java 863 B

1234567891011121314151617181920212223242526272829
  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.address.SocketAddressSource;
  6. import com.fdkankan.tk.httpClient.request.WxGetPhoneParam;
  7. import com.fdkankan.tk.httpClient.request.WxGetQrCodeParam;
  8. import com.fdkankan.tk.httpClient.response.WxOpenIdVo;
  9. /**
  10. * 获取,调用4dkk服务
  11. */
  12. @Address(source = SocketAddressSource.class)
  13. public interface LiveClient {
  14. /**
  15. * 获取 弹幕列表
  16. */
  17. @Get("/service/room-manager/danmaku/{wxRoomId}")
  18. JSONObject getDanmaku(@Var("wxRoomId") String wxRoomId);
  19. /**
  20. * 删除 弹幕列表
  21. */
  22. @Get("/service/room-manager/danmaku/delete/{wxRoomId}")
  23. JSONObject deleteDanmaku(@Var("wxRoomId") String wxRoomId);
  24. }