导航菜单

页面标题

页面副标题

自健身 v3.3.4 - SendVideoMsgAPI.java 源代码

正在查看: 自健身 v3.3.4 应用的 SendVideoMsgAPI.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package com.mu.gymtrain.Http.api;

import com.hjq.http.annotation.HttpHeader;
import com.hjq.http.config.IRequestType;
import com.hjq.http.model.BodyType;
import com.mu.gymtrain.Http.easy.api.BaseApi_Port8888;

public class SendVideoMsgAPI extends BaseApi_Port8888 implements IRequestType {
    private String conversationId;
    private String message;

    @HttpHeader
    private String token;
    private int videoId;

    @Override
    public String getApi() {
        return "/video/question";
    }

    @Override
    public String getHost() {
        return "http://36.112.61.98:8888/ai-service-api";
    }

    public SendVideoMsgAPI(String message, String token, int videoId, String conversationId) {
        this.message = message;
        this.token = token;
        this.videoId = videoId;
        this.conversationId = conversationId;
    }

    public BodyType getBodyType() {
        return BodyType.JSON;
    }
}