com.riversoft.weixin.qy.request.QyVideoRequest Maven / Gradle / Ivy
package com.riversoft.weixin.qy.request;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import com.riversoft.weixin.common.request.VideoRequest;
/**
* Created by exizhai on 9/29/2015.
*/
@JacksonXmlRootElement(localName = "xml")
public class QyVideoRequest extends VideoRequest {
@JsonProperty("AgentID")
private int agentId;
public int getAgentId() {
return agentId;
}
public void setAgentId(int agentId) {
this.agentId = agentId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy