org.tinygroup.weixinmeterial.message.PermanentVideoForm Maven / Gradle / Ivy
The newest version!
package org.tinygroup.weixinmeterial.message;
import org.tinygroup.convert.objectjson.fastjson.ObjectToJson;
/**
* 上传视频表单
* @author yancheng11334
*
*/
public class PermanentVideoForm {
private String title;
private String introduction;
public PermanentVideoForm(){
}
public PermanentVideoForm(String title,String introduction){
this.title = title;
this.introduction = introduction;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getIntroduction() {
return introduction;
}
public void setIntroduction(String introduction) {
this.introduction = introduction;
}
public String toString(){
ObjectToJson json= new ObjectToJson();
return json.convert(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy