View Javadoc
1   package com.zone.weixin4j.message.event;
2   
3   import javax.xml.bind.annotation.XmlElement;
4   import javax.xml.bind.annotation.XmlElementWrapper;
5   import java.io.Serializable;
6   import java.util.List;
7   
8   /**
9    * 弹出拍照或者相册发图的事件推送(pic_sysphoto|pic_photo_or_album|pic_weixin)
10   * 
11   * @className MenuPhotoEventMessage
12   * @author jinyu(foxinmy@gmail.com)
13   * @date 2014年9月30日
14   * @since JDK 1.6
15   * @see <a
16   *      href="https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140454&token=&lang=zh_CN">订阅号、服务号的系统发图的事件推送</a>
17   * @see <a
18   *      href="http://qydev.weixin.qq.com/wiki/index.php?title=%E6%8E%A5%E6%94%B6%E4%BA%8B%E4%BB%B6#.E5.BC.B9.E5.87.BA.E7.B3.BB.E7.BB.9F.E6.8B.8D.E7.85.A7.E5.8F.91.E5.9B.BE.E7.9A.84.E4.BA.8B.E4.BB.B6.E6.8E.A8.E9.80.81">企业号的系统发图的事件推送</a>
19   */
20  public class MenuPhotoEventMessage extends MenuEventMessage {
21  
22  	private static final long serialVersionUID = 3142350663022709730L;
23  
24  	/**
25  	 * 发送的图片信息
26  	 */
27  	@XmlElement(name = "SendPicsInfo")
28  	private PictureInfo pictureInfo;
29  
30  	public PictureInfo getPictureInfo() {
31  		return pictureInfo;
32  	}
33  
34  	/**
35  	 * 图片信息
36  	 * 
37  	 * @className PictureInfo
38  	 * @author jinyu(foxinmy@gmail.com)
39  	 * @date 2015年3月29日
40  	 * @since JDK 1.6
41  	 * @see
42  	 */
43  	public static class PictureInfo implements Serializable {
44  
45  		private static final long serialVersionUID = -3361375879168233258L;
46  
47  		/**
48  		 * 发送的图片数量
49  		 */
50  		@XmlElement(name = "Count")
51  		private int count;
52  		/**
53  		 * 图片列表
54  		 */
55  		@XmlElementWrapper(name = "PicList")
56  		@XmlElement(name = "item")
57  		private List<PictureItem> items;
58  
59  		public int getCount() {
60  			return count;
61  		}
62  
63  		public List<PictureItem> getItems() {
64  			return items;
65  		}
66  
67  		@Override
68  		public String toString() {
69  			return "PictureInfo [count=" + count + ", items=" + items + "]";
70  		}
71  	}
72  
73  	/**
74  	 * 图片
75  	 * 
76  	 * @className PictureItem
77  	 * @author jinyu(foxinmy@gmail.com)
78  	 * @date 2015年3月29日
79  	 * @since JDK 1.6
80  	 * @see
81  	 */
82  	public static class PictureItem implements Serializable {
83  
84  		private static final long serialVersionUID = -7636697449096645590L;
85  
86  		/**
87  		 * 图片的MD5值,开发者若需要,可用于验证接收到图片
88  		 */
89  		@XmlElement(name = "PicMd5Sum")
90  		private String md5;
91  
92  		public String getMd5() {
93  			return md5;
94  		}
95  
96  		@Override
97  		public String toString() {
98  			return "PictureItem [md5=" + md5 + "]";
99  		}
100 	}
101 
102 	@Override
103 	public String toString() {
104 		return "MenuPhotoEventMessage [pictureInfo=" + pictureInfo + ", "
105 				+ super.toString() + "]";
106 	}
107 }