fixed bugs

This commit is contained in:
jinyu
2015-06-29 17:03:29 +08:00
parent 735f897989
commit b706f80cee
14 changed files with 59 additions and 101 deletions
@@ -41,14 +41,14 @@ public class WeixinAccount implements Serializable {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getSecret() {
return secret;
}
public void setId(String id) {
this.id = id;
}
public void setSecret(String secret) {
this.secret = secret;
}
@@ -12,7 +12,7 @@ import com.foxinmy.weixin4j.http.ContentType;
* <p>
* 企业号上传限制:</br> 图片(image:1MB,支持JPG格式</br>
* 语音(voice):2MB,播放长度不超过60s,支持AMR格式</br> 视频(video):10MB,支持MP4格式</br>
* 普通文件(file):10MB</br>
* 普通文件(file):20MB</br>
* </p>
* <p>
* <font color='red'>媒体文件在后台保存时间为3天,即3天后media_id失效</font>
@@ -1,60 +0,0 @@
package com.foxinmy.weixin4j.type;
/**
*
* 消息类型
*
* @author jy.hu
*
*/
public enum MessageType {
/**
* 文字消息
*
* @see com.foxinmy.weixin4j.msg.TextMessage
*/
text,
/**
* 图片消息
*
* @see com.foxinmy.weixin4j.msg.ImageMessage
*/
image,
/**
* 语音消息
*
* @see com.foxinmy.weixin4j.msg.VoiceMessage
*/
voice,
/**
* 视频消息
*
* @see com.foxinmy.weixin4j.msg.VideoMessage
*/
video,
/**
* 小视频消息
*
* @see com.foxinmy.weixin4j.msg.VideoMessage
*/
shortvideo,
/**
* 位置消息
*
* @see com.foxinmy.weixin4j.msg.LocationMessage
*/
location,
/**
* 链接消息
*
* @see com.foxinmy.weixin4j.msg.LinkMessage
*/
link,
/**
* 事件消息
*
* @see com.foxinmy.weixin4j.msg.event.EventMessage
*/
event;
}