1 package com.foxinmy.weixin4j.mp.type; 2 3 /** 4 * 分享的场景 5 * 6 * @className ShareSourceType 7 * @author jinyu(foxinmy@gmail.com) 8 * @date 2015年1月30日 9 * @since JDK 1.6 10 * @see 11 */ 12 public enum ShareSourceType { 13 /** 14 * 好友转发 15 */ 16 FRIENDFORWARD, 17 /** 18 * 朋友圈 19 */ 20 FRIENDSCIRCLE, 21 /** 22 * 腾讯微博 23 */ 24 TENCENTWEIBO, 25 /** 26 * 其它 27 */ 28 OTHER; 29 }