1 package com.foxinmy.weixin4j.mp.type; 2 3 /** 4 * 用户渠道来源 5 * 6 * @className UserSourceType 7 * @author jinyu(foxinmy@gmail.com) 8 * @date 2015年1月25日 9 * @since JDK 1.6 10 * @see 11 */ 12 public enum UserSourceType { 13 OTHER("其它(包括带参数二维码)"), QRCODE("扫二维码"), CARDSHARE("名片分享"), SONUMBER("搜号码(即微信添加朋友页的搜索)"), SOMPACCOUNT( 14 "查询微信公众帐号"), ARTICLEMENU("图文页右上角菜单"); 15 private String desc; 16 17 UserSourceType(String desc) { 18 this.desc = desc; 19 } 20 21 public String getDesc() { 22 return desc; 23 } 24 }