├── .idea └── vcs.xml ├── README.md ├── lib ├── wechat-1.0.1.jar └── 依赖jar包 │ ├── dom4j-1.6.1.jar │ ├── fastjson-1.1.15.jar │ ├── log4j.jar │ ├── xpp3-1.1.4c.jar │ └── xstream-1.4.7.jar └── source └── wechatSource ├── .classpath ├── .project ├── .settings ├── .svn │ ├── entries │ └── text-base │ │ ├── org.eclipse.core.resources.prefs.svn-base │ │ └── org.eclipse.jdt.core.prefs.svn-base ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── .svn ├── entries └── text-base │ ├── .classpath.svn-base │ └── .project.svn-base ├── bin ├── .svn │ ├── entries │ └── text-base │ │ └── test.txt.svn-base ├── org │ ├── wecaht │ │ └── user │ │ │ └── menum │ │ │ └── AuthType.class │ └── wechat │ │ ├── auth │ │ ├── conn │ │ │ └── AuthUtils.class │ │ ├── request │ │ │ ├── AbstractRequest.class │ │ │ ├── AuthCodeRequest.class │ │ │ ├── AuthTokenRequest.class │ │ │ ├── AuthUserRequest.class │ │ │ └── RefreshTokenRequest.class │ │ └── response │ │ │ ├── AuthTokenResponse.class │ │ │ └── AuthUserInfo.class │ │ ├── common │ │ ├── conn │ │ │ ├── Connection$1.class │ │ │ ├── Connection.class │ │ │ └── MyX509TrustManager.class │ │ ├── entity │ │ │ ├── event │ │ │ │ ├── BasicEvent.class │ │ │ │ ├── ClickEvent.class │ │ │ │ ├── LocationEvent.class │ │ │ │ ├── ScanEvent.class │ │ │ │ ├── SubscribeEvent.class │ │ │ │ ├── ViewEvent.class │ │ │ │ └── VoiceResult.class │ │ │ ├── req │ │ │ │ ├── BasicMsg.class │ │ │ │ ├── BasicMsgUserInfo.class │ │ │ │ ├── ImageMsg.class │ │ │ │ ├── LinkMsg.class │ │ │ │ ├── LocationMsg.class │ │ │ │ ├── TextMsg.class │ │ │ │ ├── VideoMsg.class │ │ │ │ └── VoiceMsg.class │ │ │ ├── resp │ │ │ │ ├── RespBasicMsg.class │ │ │ │ ├── RespCustomMsg.class │ │ │ │ ├── RespImgMsg.class │ │ │ │ ├── RespMusicMsg.class │ │ │ │ ├── RespNewsMsg.class │ │ │ │ ├── RespTextMsg.class │ │ │ │ ├── RespVideoMsg.class │ │ │ │ ├── RespVoiceMsg.class │ │ │ │ └── bean │ │ │ │ │ ├── Articles.class │ │ │ │ │ ├── Image.class │ │ │ │ │ ├── Item.class │ │ │ │ │ ├── Music.class │ │ │ │ │ ├── Text.class │ │ │ │ │ ├── Video.class │ │ │ │ │ └── Voice.class │ │ │ └── results │ │ │ │ ├── AccessToken.class │ │ │ │ ├── BaseXmlObj.class │ │ │ │ ├── JsonResult.class │ │ │ │ ├── ResultState.class │ │ │ │ └── WechatResult.class │ │ ├── handler │ │ │ ├── BasicXmlHandler.class │ │ │ ├── MsgHandler.class │ │ │ ├── ReqMsgHandler.class │ │ │ └── impl │ │ │ │ ├── BasicXmlHandlerImpl.class │ │ │ │ └── DefaultReqMsgDispose.class │ │ ├── test │ │ │ ├── TestConnection.class │ │ │ ├── TestConvertXMLUtils.class │ │ │ ├── TestJsonString.class │ │ │ └── TestMsgHandler.class │ │ └── utils │ │ │ ├── CharsetUtils.class │ │ │ ├── Constants.class │ │ │ ├── ConvertJsonUtils.class │ │ │ ├── ConvertXMLUtils$MyDoubleCoverter.class │ │ │ ├── ConvertXMLUtils$MyFloatCoverter.class │ │ │ ├── ConvertXMLUtils$MyIntCoverter.class │ │ │ ├── ConvertXMLUtils$MyLongCoverter.class │ │ │ ├── ConvertXMLUtils.class │ │ │ ├── EncryptUtils.class │ │ │ ├── PropertiesUtils.class │ │ │ ├── SHA1.class │ │ │ ├── Signature.class │ │ │ ├── WStringUtils.class │ │ │ ├── XStreamFactory$1$1.class │ │ │ ├── XStreamFactory$1.class │ │ │ └── XStreamFactory.class │ │ ├── count │ │ ├── conn │ │ │ └── CountConn.class │ │ ├── entity │ │ │ ├── InterAnlyseEntity.class │ │ │ ├── MsgAnalyseEntity.class │ │ │ ├── NewsAnlyseEntity.class │ │ │ └── UserAnlyseEntity.class │ │ └── test │ │ │ └── TestCountConn.class │ │ ├── coupon │ │ ├── request │ │ │ ├── QueryCouponStock.class │ │ │ └── SendCouponRequest.class │ │ └── respose │ │ │ └── CouponRespose.class │ │ ├── custom │ │ ├── conn │ │ │ └── CustomConn.class │ │ ├── entity │ │ │ ├── BasicMsg.class │ │ │ ├── CVideo.class │ │ │ ├── ImageCustom.class │ │ │ ├── MusicCustom.class │ │ │ ├── News.class │ │ │ ├── NewsCustom.class │ │ │ ├── SessionEntity.class │ │ │ ├── TextCustom.class │ │ │ ├── VideoCustom.class │ │ │ ├── VoiceCustom.class │ │ │ └── results │ │ │ │ ├── CustomTalkRecord.class │ │ │ │ ├── CustonInfo.class │ │ │ │ ├── LinekFlist.class │ │ │ │ └── OnLineSession.class │ │ ├── handler │ │ │ └── CustomHandler.class │ │ └── test │ │ │ ├── TestCustomConn.class │ │ │ └── TestCustomHandler.class │ │ ├── device │ │ ├── conn │ │ │ └── SwayConnection.class │ │ ├── convert │ │ │ └── SwayConvertUtils.class │ │ ├── request │ │ │ ├── DeviceIdentifier.class │ │ │ ├── EditPagerRequest.class │ │ │ └── PageRequest.class │ │ └── response │ │ │ ├── Apply.class │ │ │ ├── ApplyResult.class │ │ │ ├── BeaconInfo.class │ │ │ ├── BeaconInfoResponse.class │ │ │ ├── BeaconInfoResult.class │ │ │ ├── CountData.class │ │ │ ├── CountDataResponse.class │ │ │ ├── DeviceItem.class │ │ │ ├── DevicesData.class │ │ │ ├── GreaterResult.class │ │ │ ├── Less500Result.class │ │ │ ├── PageResult.class │ │ │ ├── PagerResponse.class │ │ │ ├── QueryPager.class │ │ │ ├── QueryResponse.class │ │ │ └── SearchResult.class │ │ ├── material │ │ ├── conn │ │ │ └── MeaterConn.class │ │ ├── result │ │ │ ├── CountEntity.class │ │ │ ├── MaterMsg.class │ │ │ ├── MeterResult.class │ │ │ ├── NewsItem.class │ │ │ ├── NewsList.class │ │ │ ├── OtherItem.class │ │ │ └── OtherList.class │ │ └── test │ │ │ └── TestMaterialConn.class │ │ ├── menu │ │ ├── entity │ │ │ ├── BasicMenu.class │ │ │ ├── ClickMenu.class │ │ │ ├── GroupButton.class │ │ │ ├── LocationSelect.class │ │ │ ├── Menu.class │ │ │ ├── MenuAllInfo.class │ │ │ ├── PicSysphoto.class │ │ │ ├── PicWeixin.class │ │ │ ├── PicphotoOralbum.class │ │ │ ├── ReturnMenu.class │ │ │ ├── ScanPush.class │ │ │ ├── ViewMenu.class │ │ │ └── WaitMsg.class │ │ ├── test │ │ │ └── TestMenuConnection.class │ │ └── utils │ │ │ └── MenuConnection.class │ │ ├── msg │ │ ├── conn │ │ │ └── MessageConn.class │ │ ├── entity │ │ │ └── NewsEntity.class │ │ ├── result │ │ │ ├── MsgResult.class │ │ │ ├── SendStatus.class │ │ │ └── UploadNews.class │ │ ├── templet │ │ │ ├── BaseTemplet.class │ │ │ └── LogisticsThemple.class │ │ └── test │ │ │ ├── TestLogisticsThemple.class │ │ │ └── TestMsgConn.class │ │ ├── pay │ │ ├── annotation │ │ │ └── NotSign.class │ │ ├── conn │ │ │ └── PayConnection.class │ │ ├── handler │ │ │ └── PayHandler.class │ │ ├── request │ │ │ ├── BasicPayParams.class │ │ │ ├── CloseorderRequest.class │ │ │ ├── DownloadBillRequest.class │ │ │ ├── QueryOrderRequet.class │ │ │ ├── RedBackRequest.class │ │ │ ├── RefundRequest.class │ │ │ ├── RefundqueryRequest.class │ │ │ ├── ReportRequest.class │ │ │ ├── ShortUrlRequest.class │ │ │ └── UnifiedOrderRequest.class │ │ ├── response │ │ │ ├── BasicReturnSuccess.class │ │ │ ├── JSResponse.class │ │ │ ├── PayNoticeResponse.class │ │ │ ├── PayResponseResult.class │ │ │ ├── QueryOrderResultSuccess.class │ │ │ ├── RedBackResultSuccess.class │ │ │ ├── RedBackReturnSuccess.class │ │ │ ├── RefundResponse.class │ │ │ ├── RefundqueryResponse.class │ │ │ ├── ReportResponse.class │ │ │ ├── ShortUrlResponse.class │ │ │ ├── TicketResponse.class │ │ │ ├── UnifiedNoticeResponse.class │ │ │ └── UnifiedOrderResponse.class │ │ ├── test │ │ │ ├── TestPay.class │ │ │ └── TestPayUtils.class │ │ └── utils │ │ │ ├── Configure.class │ │ │ ├── FormatDateUtils.class │ │ │ ├── PayUtils.class │ │ │ ├── RandomStringGenerator.class │ │ │ ├── Util.class │ │ │ └── XMLParser.class │ │ ├── redpack │ │ ├── conn │ │ │ ├── CouponConn.class │ │ │ ├── RedPackConn.class │ │ │ └── test.txt │ │ ├── request │ │ │ ├── BaseRedPackRequest.class │ │ │ ├── GethbinfoRequest.class │ │ │ ├── GroupredpackRequest.class │ │ │ └── RedpackRequest.class │ │ ├── respose │ │ │ ├── BaseRedPackRespose.class │ │ │ ├── GethbinfoRespose.class │ │ │ ├── HbListItem.class │ │ │ └── SendredpackRespose.class │ │ ├── test │ │ │ ├── TestRedPackConn.class │ │ │ └── TestSendEntity.class │ │ └── utils │ │ │ ├── CouponUtils.class │ │ │ └── SendRedPackUtils.class │ │ ├── semantic │ │ └── conn │ │ │ └── SemanticConn.class │ │ ├── shakea │ │ ├── conn │ │ │ └── ShakeConn.class │ │ ├── request │ │ │ └── RegisterShakea.class │ │ └── result │ │ │ ├── Auditstatus.class │ │ │ └── ShakeaResult.class │ │ ├── sway │ │ └── test │ │ │ └── TestSwayConnection.class │ │ ├── ticket │ │ ├── conn │ │ │ └── TicketConn.class │ │ └── test │ │ │ └── TestTicketConn.class │ │ └── user │ │ ├── conn │ │ └── UserConnection.class │ │ ├── entity │ │ ├── UserOpenListInfo.class │ │ └── WeixinUser.class │ │ ├── menum │ │ └── AuthType.class │ │ ├── request │ │ ├── BatchGet.class │ │ └── BatchGetRequest.class │ │ ├── test │ │ ├── TestList.class │ │ ├── TestUserConnection.class │ │ └── TestUserConvertUtils.class │ │ └── utils │ │ └── UserConvertUtils.class └── test.txt ├── lib ├── .svn │ ├── entries │ ├── prop-base │ │ ├── commons-logging-1.1.3.jar.svn-base │ │ ├── dom4j-1.6.1.jar.svn-base │ │ ├── fastjson-1.1.15.jar.svn-base │ │ ├── httpclient-4.3.4.jar.svn-base │ │ ├── httpcore-4.3.2.jar.svn-base │ │ ├── log4j.jar.svn-base │ │ ├── xpp3-1.1.4c.jar.svn-base │ │ └── xstream-1.4.7.jar.svn-base │ └── text-base │ │ ├── commons-logging-1.1.3.jar.svn-base │ │ ├── dom4j-1.6.1.jar.svn-base │ │ ├── fastjson-1.1.15.jar.svn-base │ │ ├── httpclient-4.3.4.jar.svn-base │ │ ├── httpcore-4.3.2.jar.svn-base │ │ ├── log4j.jar.svn-base │ │ ├── xpp3-1.1.4c.jar.svn-base │ │ └── xstream-1.4.7.jar.svn-base ├── commons-logging-1.1.3.jar ├── dom4j-1.6.1.jar ├── fastjson-1.1.15.jar ├── httpclient-4.3.4.jar ├── httpcore-4.3.2.jar ├── log4j.jar ├── xpp3-1.1.4c.jar └── xstream-1.4.7.jar ├── org.wechat.auth ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── auth │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── AuthUtils.java.svn-base │ └── AuthUtils.java │ ├── request │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── AbstractRequest.java.svn-base │ │ │ ├── AuthCodeRequest.java.svn-base │ │ │ ├── AuthTokenRequest.java.svn-base │ │ │ ├── AuthUserRequest.java.svn-base │ │ │ └── RefreshTokenRequest.java.svn-base │ ├── AbstractRequest.java │ ├── AuthCodeRequest.java │ ├── AuthTokenRequest.java │ ├── AuthUserRequest.java │ └── RefreshTokenRequest.java │ └── response │ ├── .svn │ ├── entries │ └── text-base │ │ ├── AuthTokenResponse.java.svn-base │ │ └── AuthUserInfo.java.svn-base │ ├── AuthTokenResponse.java │ └── AuthUserInfo.java ├── org.wechat.common ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── common │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── Connection.java.svn-base │ │ │ └── MyX509TrustManager.java.svn-base │ ├── Connection.java │ └── MyX509TrustManager.java │ ├── entity │ ├── .svn │ │ └── entries │ ├── event │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── BasicEvent.java.svn-base │ │ │ │ ├── ClickEvent.java.svn-base │ │ │ │ ├── LocationEvent.java.svn-base │ │ │ │ ├── ScanEvent.java.svn-base │ │ │ │ ├── SubscribeEvent.java.svn-base │ │ │ │ ├── ViewEvent.java.svn-base │ │ │ │ └── VoiceResult.java.svn-base │ │ ├── BasicEvent.java │ │ ├── ClickEvent.java │ │ ├── LocationEvent.java │ │ ├── ScanEvent.java │ │ ├── SubscribeEvent.java │ │ ├── ViewEvent.java │ │ └── VoiceResult.java │ ├── req │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── BasicMsg.java.svn-base │ │ │ │ ├── BasicMsgUserInfo.java.svn-base │ │ │ │ ├── ImageMsg.java.svn-base │ │ │ │ ├── LinkMsg.java.svn-base │ │ │ │ ├── LocationMsg.java.svn-base │ │ │ │ ├── TextMsg.java.svn-base │ │ │ │ ├── VideoMsg.java.svn-base │ │ │ │ └── VoiceMsg.java.svn-base │ │ ├── BasicMsg.java │ │ ├── BasicMsgUserInfo.java │ │ ├── ImageMsg.java │ │ ├── LinkMsg.java │ │ ├── LocationMsg.java │ │ ├── TextMsg.java │ │ ├── VideoMsg.java │ │ └── VoiceMsg.java │ ├── resp │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── RespBasicMsg.java.svn-base │ │ │ │ ├── RespCustomMsg.java.svn-base │ │ │ │ ├── RespImgMsg.java.svn-base │ │ │ │ ├── RespMusicMsg.java.svn-base │ │ │ │ ├── RespNewsMsg.java.svn-base │ │ │ │ ├── RespTextMsg.java.svn-base │ │ │ │ ├── RespVideoMsg.java.svn-base │ │ │ │ └── RespVoiceMsg.java.svn-base │ │ ├── RespBasicMsg.java │ │ ├── RespCustomMsg.java │ │ ├── RespImgMsg.java │ │ ├── RespMusicMsg.java │ │ ├── RespNewsMsg.java │ │ ├── RespTextMsg.java │ │ ├── RespVideoMsg.java │ │ ├── RespVoiceMsg.java │ │ └── bean │ │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── Articles.java.svn-base │ │ │ │ ├── Image.java.svn-base │ │ │ │ ├── Item.java.svn-base │ │ │ │ ├── Music.java.svn-base │ │ │ │ ├── Text.java.svn-base │ │ │ │ ├── Video.java.svn-base │ │ │ │ └── Voice.java.svn-base │ │ │ ├── Articles.java │ │ │ ├── Image.java │ │ │ ├── Item.java │ │ │ ├── Music.java │ │ │ ├── Text.java │ │ │ ├── Video.java │ │ │ └── Voice.java │ └── results │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── AccessToken.java.svn-base │ │ │ ├── BaseXmlObj.java.svn-base │ │ │ ├── JsonResult.java.svn-base │ │ │ ├── ResultState.java.svn-base │ │ │ └── WechatResult.java.svn-base │ │ ├── AccessToken.java │ │ ├── BaseXmlObj.java │ │ ├── JsonResult.java │ │ ├── ResultState.java │ │ └── WechatResult.java │ ├── handler │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicXmlHandler.java.svn-base │ │ │ ├── MsgHandler.java.svn-base │ │ │ └── ReqMsgHandler.java.svn-base │ ├── BasicXmlHandler.java │ ├── MsgHandler.java │ ├── ReqMsgHandler.java │ └── impl │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicXmlHandlerImpl.java.svn-base │ │ │ └── DefaultReqMsgDispose.java.svn-base │ │ ├── BasicXmlHandlerImpl.java │ │ └── DefaultReqMsgDispose.java │ ├── test │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── TestConnection.java.svn-base │ │ │ ├── TestConvertXMLUtils.java.svn-base │ │ │ ├── TestJsonString.java.svn-base │ │ │ └── TestMsgHandler.java.svn-base │ ├── TestConnection.java │ ├── TestConvertXMLUtils.java │ ├── TestJsonString.java │ └── TestMsgHandler.java │ └── utils │ ├── .svn │ ├── entries │ └── text-base │ │ ├── CharsetUtils.java.svn-base │ │ ├── Constants.java.svn-base │ │ ├── ConvertJsonUtils.java.svn-base │ │ ├── ConvertXMLUtils.java.svn-base │ │ ├── EncryptUtils.java.svn-base │ │ ├── PropertiesUtils.java.svn-base │ │ ├── SHA1.java.svn-base │ │ ├── Signature.java.svn-base │ │ ├── WStringUtils.java.svn-base │ │ └── XStreamFactory.java.svn-base │ ├── CharsetUtils.java │ ├── Constants.java │ ├── ConvertJsonUtils.java │ ├── ConvertXMLUtils.java │ ├── EncryptUtils.java │ ├── PropertiesUtils.java │ ├── SHA1.java │ ├── Signature.java │ ├── WStringUtils.java │ └── XStreamFactory.java ├── org.wechat.count ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── count │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── CountConn.java.svn-base │ └── CountConn.java │ ├── entity │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── InterAnlyseEntity.java.svn-base │ │ │ ├── MsgAnalyseEntity.java.svn-base │ │ │ ├── NewsAnlyseEntity.java.svn-base │ │ │ └── UserAnlyseEntity.java.svn-base │ ├── InterAnlyseEntity.java │ ├── MsgAnalyseEntity.java │ ├── NewsAnlyseEntity.java │ └── UserAnlyseEntity.java │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ └── TestCountConn.java.svn-base │ └── TestCountConn.java ├── org.wechat.custom ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── custom │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── CustomConn.java.svn-base │ └── CustomConn.java │ ├── entity │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicMsg.java.svn-base │ │ │ ├── CVideo.java.svn-base │ │ │ ├── ImageCustom.java.svn-base │ │ │ ├── MusicCustom.java.svn-base │ │ │ ├── News.java.svn-base │ │ │ ├── NewsCustom.java.svn-base │ │ │ ├── SessionEntity.java.svn-base │ │ │ ├── TextCustom.java.svn-base │ │ │ ├── VideoCustom.java.svn-base │ │ │ └── VoiceCustom.java.svn-base │ ├── BasicMsg.java │ ├── CVideo.java │ ├── ImageCustom.java │ ├── MusicCustom.java │ ├── News.java │ ├── NewsCustom.java │ ├── SessionEntity.java │ ├── TextCustom.java │ ├── VideoCustom.java │ ├── VoiceCustom.java │ └── results │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── CustomTalkRecord.java.svn-base │ │ │ ├── CustonInfo.java.svn-base │ │ │ ├── LinekFlist.java.svn-base │ │ │ └── OnLineSession.java.svn-base │ │ ├── CustomTalkRecord.java │ │ ├── CustonInfo.java │ │ ├── LinekFlist.java │ │ └── OnLineSession.java │ ├── handler │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── CustomHandler.java.svn-base │ └── CustomHandler.java │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ ├── TestCustomConn.java.svn-base │ │ └── TestCustomHandler.java.svn-base │ ├── TestCustomConn.java │ └── TestCustomHandler.java ├── org.wechat.device ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ ├── device │ ├── .svn │ │ └── entries │ ├── conn │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ └── SwayConnection.java.svn-base │ │ └── SwayConnection.java │ ├── convert │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ └── SwayConvertUtils.java.svn-base │ │ └── SwayConvertUtils.java │ ├── request │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── DeviceIdentifier.java.svn-base │ │ │ │ ├── EditPagerRequest.java.svn-base │ │ │ │ └── PageRequest.java.svn-base │ │ ├── DeviceIdentifier.java │ │ ├── EditPagerRequest.java │ │ └── PageRequest.java │ └── response │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── Apply.java.svn-base │ │ │ ├── ApplyResult.java.svn-base │ │ │ ├── BeaconInfo.java.svn-base │ │ │ ├── BeaconInfoResponse.java.svn-base │ │ │ ├── BeaconInfoResult.java.svn-base │ │ │ ├── CountData.java.svn-base │ │ │ ├── CountDataResponse.java.svn-base │ │ │ ├── DeviceItem.java.svn-base │ │ │ ├── DevicesData.java.svn-base │ │ │ ├── GreaterResult.java.svn-base │ │ │ ├── Less500Result.java.svn-base │ │ │ ├── PageResult.java.svn-base │ │ │ ├── PagerResponse.java.svn-base │ │ │ ├── QueryPager.java.svn-base │ │ │ ├── QueryResponse.java.svn-base │ │ │ └── SearchResult.java.svn-base │ │ ├── Apply.java │ │ ├── ApplyResult.java │ │ ├── BeaconInfo.java │ │ ├── BeaconInfoResponse.java │ │ ├── BeaconInfoResult.java │ │ ├── CountData.java │ │ ├── CountDataResponse.java │ │ ├── DeviceItem.java │ │ ├── DevicesData.java │ │ ├── GreaterResult.java │ │ ├── Less500Result.java │ │ ├── PageResult.java │ │ ├── PagerResponse.java │ │ ├── QueryPager.java │ │ ├── QueryResponse.java │ │ └── SearchResult.java │ └── sway │ ├── .svn │ └── entries │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ └── TestSwayConnection.java.svn-base │ └── TestSwayConnection.java ├── org.wechat.material ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── material │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── MeaterConn.java.svn-base │ └── MeaterConn.java │ ├── result │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── CountEntity.java.svn-base │ │ │ ├── MaterMsg.java.svn-base │ │ │ ├── MeterResult.java.svn-base │ │ │ ├── NewsItem.java.svn-base │ │ │ ├── NewsList.java.svn-base │ │ │ ├── OtherItem.java.svn-base │ │ │ └── OtherList.java.svn-base │ ├── CountEntity.java │ ├── MaterMsg.java │ ├── MeterResult.java │ ├── NewsItem.java │ ├── NewsList.java │ ├── OtherItem.java │ └── OtherList.java │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ └── TestMaterialConn.java.svn-base │ └── TestMaterialConn.java ├── org.wechat.menu ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── menu │ ├── .svn │ └── entries │ ├── entity │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicMenu.java.svn-base │ │ │ ├── ClickMenu.java.svn-base │ │ │ ├── GroupButton.java.svn-base │ │ │ ├── LocationSelect.java.svn-base │ │ │ ├── Menu.java.svn-base │ │ │ ├── MenuAllInfo.java.svn-base │ │ │ ├── PicSysphoto.java.svn-base │ │ │ ├── PicWeixin.java.svn-base │ │ │ ├── PicphotoOralbum.java.svn-base │ │ │ ├── ReturnMenu.java.svn-base │ │ │ ├── ScanPush.java.svn-base │ │ │ ├── ViewMenu.java.svn-base │ │ │ └── WaitMsg.java.svn-base │ ├── BasicMenu.java │ ├── ClickMenu.java │ ├── GroupButton.java │ ├── LocationSelect.java │ ├── Menu.java │ ├── MenuAllInfo.java │ ├── PicSysphoto.java │ ├── PicWeixin.java │ ├── PicphotoOralbum.java │ ├── ReturnMenu.java │ ├── ScanPush.java │ ├── ViewMenu.java │ └── WaitMsg.java │ ├── test │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── TestMenuConnection.java.svn-base │ └── TestMenuConnection.java │ └── utils │ ├── .svn │ ├── entries │ └── text-base │ │ └── MenuConnection.java.svn-base │ └── MenuConnection.java ├── org.wechat.msg ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── msg │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── MessageConn.java.svn-base │ └── MessageConn.java │ ├── entity │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── NewsEntity.java.svn-base │ └── NewsEntity.java │ ├── result │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── MsgResult.java.svn-base │ │ │ ├── SendStatus.java.svn-base │ │ │ └── UploadNews.java.svn-base │ ├── MsgResult.java │ ├── SendStatus.java │ └── UploadNews.java │ ├── templet │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BaseTemplet.java.svn-base │ │ │ └── LogisticsThemple.java.svn-base │ ├── BaseTemplet.java │ └── LogisticsThemple.java │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ ├── TestLogisticsThemple.java.svn-base │ │ └── TestMsgConn.java.svn-base │ ├── TestLogisticsThemple.java │ └── TestMsgConn.java ├── org.wechat.pay ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── pay │ ├── .svn │ └── entries │ ├── annotation │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── NotSign.java.svn-base │ └── NotSign.java │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── PayConnection.java.svn-base │ └── PayConnection.java │ ├── handler │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── PayHandler.java.svn-base │ └── PayHandler.java │ ├── request │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicPayParams.java.svn-base │ │ │ ├── CloseorderRequest.java.svn-base │ │ │ ├── DownloadBillRequest.java.svn-base │ │ │ ├── QueryOrderRequet.java.svn-base │ │ │ ├── RedBackRequest.java.svn-base │ │ │ ├── RefundRequest.java.svn-base │ │ │ ├── RefundqueryRequest.java.svn-base │ │ │ ├── ReportRequest.java.svn-base │ │ │ ├── ShortUrlRequest.java.svn-base │ │ │ └── UnifiedOrderRequest.java.svn-base │ ├── BasicPayParams.java │ ├── CloseorderRequest.java │ ├── DownloadBillRequest.java │ ├── QueryOrderRequet.java │ ├── RedBackRequest.java │ ├── RefundRequest.java │ ├── RefundqueryRequest.java │ ├── ReportRequest.java │ ├── ShortUrlRequest.java │ └── UnifiedOrderRequest.java │ ├── response │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicReturnSuccess.java.svn-base │ │ │ ├── JSResponse.java.svn-base │ │ │ ├── PayNoticeResponse.java.svn-base │ │ │ ├── PayResponseResult.java.svn-base │ │ │ ├── QueryOrderResultSuccess.java.svn-base │ │ │ ├── QueryOrderReturnSuccess.java.svn-base │ │ │ ├── RedBackResultSuccess.java.svn-base │ │ │ ├── RedBackReturnSuccess.java.svn-base │ │ │ ├── RefundResponse.java.svn-base │ │ │ ├── RefundqueryResponse.java.svn-base │ │ │ ├── ReportResponse.java.svn-base │ │ │ ├── ShortUrlResponse.java.svn-base │ │ │ ├── TicketResponse.java.svn-base │ │ │ ├── UnifiedNoticeResponse.java.svn-base │ │ │ └── UnifiedOrderResponse.java.svn-base │ ├── BasicReturnSuccess.java │ ├── JSResponse.java │ ├── PayNoticeResponse.java │ ├── PayResponseResult.java │ ├── QueryOrderResultSuccess.java │ ├── QueryOrderReturnSuccess.java │ ├── RedBackResultSuccess.java │ ├── RedBackReturnSuccess.java │ ├── RefundResponse.java │ ├── RefundqueryResponse.java │ ├── ReportResponse.java │ ├── ShortUrlResponse.java │ ├── TicketResponse.java │ ├── UnifiedNoticeResponse.java │ └── UnifiedOrderResponse.java │ ├── test │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── TestPay.java.svn-base │ │ │ └── TestPayUtils.java.svn-base │ ├── TestPay.java │ └── TestPayUtils.java │ └── utils │ ├── .svn │ ├── entries │ └── text-base │ │ ├── Configure.java.svn-base │ │ ├── FormatDateUtils.java.svn-base │ │ ├── PayUtils.java.svn-base │ │ ├── RandomStringGenerator.java.svn-base │ │ ├── Util.java.svn-base │ │ └── XMLParser.java.svn-base │ ├── Configure.java │ ├── FormatDateUtils.java │ ├── PayUtils.java │ ├── RandomStringGenerator.java │ ├── Util.java │ └── XMLParser.java ├── org.wechat.redpack ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ ├── coupon │ ├── .svn │ │ └── entries │ ├── request │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── QueryCouponStock.java.svn-base │ │ │ │ └── SendCouponRequest.java.svn-base │ │ ├── QueryCouponStock.java │ │ └── SendCouponRequest.java │ └── respose │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── CouponRespose.java.svn-base │ │ └── CouponRespose.java │ └── redpack │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── CouponConn.java.svn-base │ │ │ ├── RedPackConn.java.svn-base │ │ │ └── test.txt.svn-base │ ├── CouponConn.java │ ├── RedPackConn.java │ └── test.txt │ ├── request │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BaseRedPackRequest.java.svn-base │ │ │ ├── GethbinfoRequest.java.svn-base │ │ │ ├── GroupredpackRequest.java.svn-base │ │ │ └── RedpackRequest.java.svn-base │ ├── BaseRedPackRequest.java │ ├── GethbinfoRequest.java │ ├── GroupredpackRequest.java │ └── RedpackRequest.java │ ├── respose │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BaseRedPackRespose.java.svn-base │ │ │ ├── GethbinfoRespose.java.svn-base │ │ │ ├── HbListItem.java.svn-base │ │ │ └── SendredpackRespose.java.svn-base │ ├── BaseRedPackRespose.java │ ├── GethbinfoRespose.java │ ├── HbListItem.java │ └── SendredpackRespose.java │ ├── test │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── TestRedPackConn.java.svn-base │ │ │ └── TestSendEntity.java.svn-base │ ├── TestRedPackConn.java │ └── TestSendEntity.java │ └── utils │ ├── .svn │ ├── entries │ └── text-base │ │ ├── CouponUtils.java.svn-base │ │ └── SendRedPackUtils.java.svn-base │ ├── CouponUtils.java │ └── SendRedPackUtils.java ├── org.wechat.semantic ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── semantic │ ├── .svn │ └── entries │ └── conn │ ├── .svn │ ├── entries │ └── text-base │ │ └── SemanticConn.java.svn-base │ └── SemanticConn.java ├── org.wechat.shakearound ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── shakea │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── ShakeConn.java.svn-base │ └── ShakeConn.java │ ├── request │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── RegisterShakea.java.svn-base │ └── RegisterShakea.java │ └── result │ ├── .svn │ ├── entries │ └── text-base │ │ ├── Auditstatus.java.svn-base │ │ └── ShakeaResult.java.svn-base │ ├── Auditstatus.java │ └── ShakeaResult.java ├── org.wechat.ticket ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── ticket │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── TicketConn.java.svn-base │ └── TicketConn.java │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ └── TestTicketConn.java.svn-base │ └── TestTicketConn.java ├── org.wechat.user ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ ├── wecaht │ ├── .svn │ │ └── entries │ └── user │ │ ├── .svn │ │ └── entries │ │ └── menum │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── AuthType.java.svn-base │ │ └── AuthType.java │ └── wechat │ ├── .svn │ └── entries │ └── user │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── UserConnection.java.svn-base │ └── UserConnection.java │ ├── entity │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── UserOpenListInfo.java.svn-base │ │ │ └── WeixinUser.java.svn-base │ ├── UserOpenListInfo.java │ └── WeixinUser.java │ ├── menum │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── AuthType.java.svn-base │ └── AuthType.java │ ├── request │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BatchGet.java.svn-base │ │ │ └── BatchGetRequest.java.svn-base │ ├── BatchGet.java │ └── BatchGetRequest.java │ ├── test │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── TestList.java.svn-base │ │ │ ├── TestUserConnection.java.svn-base │ │ │ └── TestUserConvertUtils.java.svn-base │ ├── TestList.java │ ├── TestUserConnection.java │ └── TestUserConvertUtils.java │ └── utils │ ├── .svn │ ├── entries │ └── text-base │ │ └── UserConvertUtils.java.svn-base │ └── UserConvertUtils.java └── src ├── .svn ├── entries └── text-base │ └── test.txt.svn-base └── test.txt /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /lib/wechat-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/lib/wechat-1.0.1.jar -------------------------------------------------------------------------------- /lib/依赖jar包/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/lib/依赖jar包/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /lib/依赖jar包/fastjson-1.1.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/lib/依赖jar包/fastjson-1.1.15.jar -------------------------------------------------------------------------------- /lib/依赖jar包/log4j.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/lib/依赖jar包/log4j.jar -------------------------------------------------------------------------------- /lib/依赖jar包/xpp3-1.1.4c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/lib/依赖jar包/xpp3-1.1.4c.jar -------------------------------------------------------------------------------- /lib/依赖jar包/xstream-1.4.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/lib/依赖jar包/xstream-1.4.7.jar -------------------------------------------------------------------------------- /source/wechatSource/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | wechatSource 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /source/wechatSource/.settings/.svn/text-base/org.eclipse.core.resources.prefs.svn-base: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /source/wechatSource/.settings/.svn/text-base/org.eclipse.jdt.core.prefs.svn-base: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 5 | org.eclipse.jdt.core.compiler.compliance=1.7 6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 11 | org.eclipse.jdt.core.compiler.source=1.7 12 | -------------------------------------------------------------------------------- /source/wechatSource/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /source/wechatSource/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 5 | org.eclipse.jdt.core.compiler.compliance=1.7 6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 11 | org.eclipse.jdt.core.compiler.source=1.7 12 | -------------------------------------------------------------------------------- /source/wechatSource/.svn/text-base/.project.svn-base: -------------------------------------------------------------------------------- 1 | 2 | 3 | wechatSource 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /source/wechatSource/bin/.svn/text-base/test.txt.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/.svn/text-base/test.txt.svn-base -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wecaht/user/menum/AuthType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wecaht/user/menum/AuthType.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/conn/AuthUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/auth/conn/AuthUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/request/AbstractRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/auth/request/AbstractRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/request/AuthCodeRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/auth/request/AuthCodeRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/request/AuthTokenRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/auth/request/AuthTokenRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/request/AuthUserRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/auth/request/AuthUserRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/request/RefreshTokenRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/auth/request/RefreshTokenRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/response/AuthTokenResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/auth/response/AuthTokenResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/response/AuthUserInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/auth/response/AuthUserInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/conn/Connection$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/conn/Connection$1.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/conn/Connection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/conn/Connection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/conn/MyX509TrustManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/conn/MyX509TrustManager.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/BasicEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/event/BasicEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/ClickEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/event/ClickEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/LocationEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/event/LocationEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/ScanEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/event/ScanEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/SubscribeEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/event/SubscribeEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/ViewEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/event/ViewEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/VoiceResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/event/VoiceResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/BasicMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/req/BasicMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/BasicMsgUserInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/req/BasicMsgUserInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/ImageMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/req/ImageMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/LinkMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/req/LinkMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/LocationMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/req/LocationMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/TextMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/req/TextMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/VideoMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/req/VideoMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/VoiceMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/req/VoiceMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespBasicMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/RespBasicMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespCustomMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/RespCustomMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespImgMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/RespImgMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespMusicMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/RespMusicMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespNewsMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/RespNewsMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespTextMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/RespTextMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespVideoMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/RespVideoMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespVoiceMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/RespVoiceMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Articles.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Articles.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Image.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Image.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Item.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Item.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Music.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Music.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Text.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Text.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Video.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Video.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Voice.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Voice.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/results/AccessToken.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/results/AccessToken.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/results/BaseXmlObj.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/results/BaseXmlObj.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/results/JsonResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/results/JsonResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/results/ResultState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/results/ResultState.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/results/WechatResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/entity/results/WechatResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/handler/BasicXmlHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/handler/BasicXmlHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/handler/MsgHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/handler/MsgHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/handler/ReqMsgHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/handler/ReqMsgHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/handler/impl/BasicXmlHandlerImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/handler/impl/BasicXmlHandlerImpl.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/handler/impl/DefaultReqMsgDispose.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/handler/impl/DefaultReqMsgDispose.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/test/TestConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/test/TestConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/test/TestConvertXMLUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/test/TestConvertXMLUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/test/TestJsonString.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/test/TestJsonString.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/test/TestMsgHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/test/TestMsgHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/CharsetUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/CharsetUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/Constants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/Constants.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertJsonUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/ConvertJsonUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyDoubleCoverter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyDoubleCoverter.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyFloatCoverter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyFloatCoverter.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyIntCoverter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyIntCoverter.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyLongCoverter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyLongCoverter.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/EncryptUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/EncryptUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/PropertiesUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/PropertiesUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/SHA1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/SHA1.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/Signature.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/Signature.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/WStringUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/WStringUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/XStreamFactory$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/XStreamFactory$1$1.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/XStreamFactory$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/XStreamFactory$1.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/XStreamFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/common/utils/XStreamFactory.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/conn/CountConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/count/conn/CountConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/entity/InterAnlyseEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/count/entity/InterAnlyseEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/entity/MsgAnalyseEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/count/entity/MsgAnalyseEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/entity/NewsAnlyseEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/count/entity/NewsAnlyseEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/entity/UserAnlyseEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/count/entity/UserAnlyseEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/test/TestCountConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/count/test/TestCountConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/coupon/request/QueryCouponStock.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/coupon/request/QueryCouponStock.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/coupon/request/SendCouponRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/coupon/request/SendCouponRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/coupon/respose/CouponRespose.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/coupon/respose/CouponRespose.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/conn/CustomConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/conn/CustomConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/BasicMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/BasicMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/CVideo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/CVideo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/ImageCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/ImageCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/MusicCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/MusicCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/News.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/News.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/NewsCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/NewsCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/SessionEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/SessionEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/TextCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/TextCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/VideoCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/VideoCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/VoiceCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/VoiceCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/results/CustomTalkRecord.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/results/CustomTalkRecord.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/results/CustonInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/results/CustonInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/results/LinekFlist.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/results/LinekFlist.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/results/OnLineSession.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/entity/results/OnLineSession.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/handler/CustomHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/handler/CustomHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/test/TestCustomConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/test/TestCustomConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/test/TestCustomHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/custom/test/TestCustomHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/conn/SwayConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/conn/SwayConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/convert/SwayConvertUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/convert/SwayConvertUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/request/DeviceIdentifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/request/DeviceIdentifier.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/request/EditPagerRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/request/EditPagerRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/request/PageRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/request/PageRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/Apply.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/Apply.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/ApplyResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/ApplyResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/BeaconInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/BeaconInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/BeaconInfoResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/BeaconInfoResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/BeaconInfoResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/BeaconInfoResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/CountData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/CountData.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/CountDataResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/CountDataResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/DeviceItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/DeviceItem.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/DevicesData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/DevicesData.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/GreaterResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/GreaterResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/Less500Result.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/Less500Result.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/PageResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/PageResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/PagerResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/PagerResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/QueryPager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/QueryPager.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/QueryResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/QueryResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/SearchResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/device/response/SearchResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/conn/MeaterConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/material/conn/MeaterConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/CountEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/material/result/CountEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/MaterMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/material/result/MaterMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/MeterResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/material/result/MeterResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/NewsItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/material/result/NewsItem.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/NewsList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/material/result/NewsList.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/OtherItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/material/result/OtherItem.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/OtherList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/material/result/OtherList.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/test/TestMaterialConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/material/test/TestMaterialConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/BasicMenu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/BasicMenu.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/ClickMenu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/ClickMenu.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/GroupButton.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/GroupButton.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/LocationSelect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/LocationSelect.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/Menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/Menu.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/MenuAllInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/MenuAllInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/PicSysphoto.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/PicSysphoto.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/PicWeixin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/PicWeixin.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/PicphotoOralbum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/PicphotoOralbum.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/ReturnMenu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/ReturnMenu.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/ScanPush.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/ScanPush.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/ViewMenu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/ViewMenu.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/WaitMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/entity/WaitMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/test/TestMenuConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/test/TestMenuConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/utils/MenuConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/menu/utils/MenuConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/conn/MessageConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/msg/conn/MessageConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/entity/NewsEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/msg/entity/NewsEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/result/MsgResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/msg/result/MsgResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/result/SendStatus.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/msg/result/SendStatus.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/result/UploadNews.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/msg/result/UploadNews.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/templet/BaseTemplet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/msg/templet/BaseTemplet.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/templet/LogisticsThemple.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/msg/templet/LogisticsThemple.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/test/TestLogisticsThemple.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/msg/test/TestLogisticsThemple.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/test/TestMsgConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/msg/test/TestMsgConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/annotation/NotSign.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/annotation/NotSign.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/conn/PayConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/conn/PayConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/handler/PayHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/handler/PayHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/BasicPayParams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/request/BasicPayParams.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/CloseorderRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/request/CloseorderRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/DownloadBillRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/request/DownloadBillRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/QueryOrderRequet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/request/QueryOrderRequet.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/RedBackRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/request/RedBackRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/RefundRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/request/RefundRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/RefundqueryRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/request/RefundqueryRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/ReportRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/request/ReportRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/ShortUrlRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/request/ShortUrlRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/UnifiedOrderRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/request/UnifiedOrderRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/BasicReturnSuccess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/BasicReturnSuccess.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/JSResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/JSResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/PayNoticeResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/PayNoticeResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/PayResponseResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/PayResponseResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/QueryOrderResultSuccess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/QueryOrderResultSuccess.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/RedBackResultSuccess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/RedBackResultSuccess.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/RedBackReturnSuccess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/RedBackReturnSuccess.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/RefundResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/RefundResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/RefundqueryResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/RefundqueryResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/ReportResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/ReportResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/ShortUrlResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/ShortUrlResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/TicketResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/TicketResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/UnifiedNoticeResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/UnifiedNoticeResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/UnifiedOrderResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/response/UnifiedOrderResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/test/TestPay.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/test/TestPay.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/test/TestPayUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/test/TestPayUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/Configure.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/utils/Configure.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/FormatDateUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/utils/FormatDateUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/PayUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/utils/PayUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/RandomStringGenerator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/utils/RandomStringGenerator.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/utils/Util.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/XMLParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/pay/utils/XMLParser.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/conn/CouponConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/conn/CouponConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/conn/RedPackConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/conn/RedPackConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/conn/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/conn/test.txt -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/request/BaseRedPackRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/request/BaseRedPackRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/request/GethbinfoRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/request/GethbinfoRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/request/GroupredpackRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/request/GroupredpackRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/request/RedpackRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/request/RedpackRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/respose/BaseRedPackRespose.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/respose/BaseRedPackRespose.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/respose/GethbinfoRespose.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/respose/GethbinfoRespose.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/respose/HbListItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/respose/HbListItem.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/respose/SendredpackRespose.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/respose/SendredpackRespose.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/test/TestRedPackConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/test/TestRedPackConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/test/TestSendEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/test/TestSendEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/utils/CouponUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/utils/CouponUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/utils/SendRedPackUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/redpack/utils/SendRedPackUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/semantic/conn/SemanticConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/semantic/conn/SemanticConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/shakea/conn/ShakeConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/shakea/conn/ShakeConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/shakea/request/RegisterShakea.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/shakea/request/RegisterShakea.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/shakea/result/Auditstatus.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/shakea/result/Auditstatus.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/shakea/result/ShakeaResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/shakea/result/ShakeaResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/sway/test/TestSwayConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/sway/test/TestSwayConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/ticket/conn/TicketConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/ticket/conn/TicketConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/ticket/test/TestTicketConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/ticket/test/TestTicketConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/conn/UserConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/user/conn/UserConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/entity/UserOpenListInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/user/entity/UserOpenListInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/entity/WeixinUser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/user/entity/WeixinUser.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/menum/AuthType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/user/menum/AuthType.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/request/BatchGet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/user/request/BatchGet.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/request/BatchGetRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/user/request/BatchGetRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/test/TestList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/user/test/TestList.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/test/TestUserConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/user/test/TestUserConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/test/TestUserConvertUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/user/test/TestUserConvertUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/utils/UserConvertUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/org/wechat/user/utils/UserConvertUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/bin/test.txt -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/commons-logging-1.1.3.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/dom4j-1.6.1.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/fastjson-1.1.15.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/httpclient-4.3.4.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/httpcore-4.3.2.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/log4j.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/xpp3-1.1.4c.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/xstream-1.4.7.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/commons-logging-1.1.3.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/.svn/text-base/commons-logging-1.1.3.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/dom4j-1.6.1.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/.svn/text-base/dom4j-1.6.1.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/fastjson-1.1.15.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/.svn/text-base/fastjson-1.1.15.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/httpclient-4.3.4.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/.svn/text-base/httpclient-4.3.4.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/httpcore-4.3.2.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/.svn/text-base/httpcore-4.3.2.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/log4j.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/.svn/text-base/log4j.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/xpp3-1.1.4c.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/.svn/text-base/xpp3-1.1.4c.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/xstream-1.4.7.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/.svn/text-base/xstream-1.4.7.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/commons-logging-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/commons-logging-1.1.3.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/fastjson-1.1.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/fastjson-1.1.15.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/httpclient-4.3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/httpclient-4.3.4.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/httpcore-4.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/httpcore-4.3.2.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/log4j.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/log4j.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/xpp3-1.1.4c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/xpp3-1.1.4c.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/xstream-1.4.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/lib/xstream-1.4.7.jar -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.auth 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.auth/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.auth/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | auth 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.auth/org/wechat/auth 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | request 33 | dir 34 | 35 | response 36 | dir 37 | 38 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/request/.svn/text-base/AbstractRequest.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.auth.request; 2 | 3 | import java.util.Map; 4 | 5 | /** 6 | * 抽象请求 7 | * @author Andy 8 | * 9 | */ 10 | public abstract class AbstractRequest { 11 | 12 | /** 13 | * 返回请求参数 14 | * @return 15 | */ 16 | public abstract Map getParams() throws Exception; 17 | } 18 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/request/AbstractRequest.java: -------------------------------------------------------------------------------- 1 | package org.wechat.auth.request; 2 | 3 | import java.util.Map; 4 | 5 | /** 6 | * 抽象请求 7 | * @author Andy 8 | * 9 | */ 10 | public abstract class AbstractRequest { 11 | 12 | /** 13 | * 返回请求参数 14 | * @return 15 | */ 16 | public abstract Map getParams() throws Exception; 17 | } 18 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.common 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T07:58:27.000Z 11 | 9 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.common/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T07:58:27.000Z 11 | 9 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.common/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T07:58:27.000Z 11 | 9 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | common 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.common/org/wechat/common 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T07:58:27.000Z 11 | 9 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | entity 33 | dir 34 | 35 | handler 36 | dir 37 | 38 | test 39 | dir 40 | 41 | utils 42 | dir 43 | 44 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.common/org/wechat/common/entity 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-19T20:57:37.000Z 11 | 3 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | event 30 | dir 31 | 32 | req 33 | dir 34 | 35 | resp 36 | dir 37 | 38 | results 39 | dir 40 | 41 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/.svn/text-base/ClickEvent.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.event; 2 | 3 | /** 4 | * 自定义菜单点击事件 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ClickEvent extends BasicEvent { 10 | private String EventKey; // 事件KEY值,与自定义菜单接口中KEY值对应 11 | 12 | @Override 13 | public String setEvent() { 14 | return "CLICK"; 15 | } 16 | 17 | public String getEventKey() { 18 | return EventKey; 19 | } 20 | 21 | public void setEventKey(String eventKey) { 22 | EventKey = eventKey; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/.svn/text-base/ViewEvent.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.event; 2 | 3 | /** 4 | * 自定义菜单跳转链接 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ViewEvent extends BasicEvent { 10 | private String EventKey; // 事件KEY值,设置的跳转URL 11 | 12 | @Override 13 | public String setEvent() { 14 | return "VIEW"; 15 | } 16 | 17 | public String getEventKey() { 18 | return EventKey; 19 | } 20 | 21 | public void setEventKey(String eventKey) { 22 | EventKey = eventKey; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/ClickEvent.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.event; 2 | 3 | /** 4 | * 自定义菜单点击事件 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ClickEvent extends BasicEvent { 10 | private String EventKey; // 事件KEY值,与自定义菜单接口中KEY值对应 11 | 12 | @Override 13 | public String setEvent() { 14 | return "CLICK"; 15 | } 16 | 17 | public String getEventKey() { 18 | return EventKey; 19 | } 20 | 21 | public void setEventKey(String eventKey) { 22 | EventKey = eventKey; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/ScanEvent.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.event; 2 | 3 | /** 4 | * 用户已关注事件 5 | * 6 | * @author Andy 7 | */ 8 | public class ScanEvent extends BasicEvent { 9 | private String EventKey; // 事件KEY值,是一个32位无符号整数,即创建二维码时的二维码scene_id 10 | private String Ticket; // 二维码的ticket,可用来换取二维码图片 11 | 12 | @Override 13 | public String setEvent() { 14 | return "SCAN"; 15 | } 16 | 17 | public String getEventKey() { 18 | return EventKey; 19 | } 20 | 21 | public void setEventKey(String eventKey) { 22 | EventKey = eventKey; 23 | } 24 | 25 | public String getTicket() { 26 | return Ticket; 27 | } 28 | 29 | public void setTicket(String ticket) { 30 | Ticket = ticket; 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/ViewEvent.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.event; 2 | 3 | /** 4 | * 自定义菜单跳转链接 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ViewEvent extends BasicEvent { 10 | private String EventKey; // 事件KEY值,设置的跳转URL 11 | 12 | @Override 13 | public String setEvent() { 14 | return "VIEW"; 15 | } 16 | 17 | public String getEventKey() { 18 | return EventKey; 19 | } 20 | 21 | public void setEventKey(String eventKey) { 22 | EventKey = eventKey; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/.svn/text-base/ImageMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.req; 2 | 3 | /** 4 | * 图片消息 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ImageMsg extends BasicMsg { 10 | private String PicUrl; // 图片链接 11 | private String MediaId; // 图片消息媒体id,可以调用多媒体文件下载接口拉取数据。 12 | 13 | @Override 14 | public String SetMsgType() { 15 | return "image"; 16 | } 17 | 18 | public String getPicUrl() { 19 | return PicUrl; 20 | } 21 | 22 | public void setPicUrl(String picUrl) { 23 | PicUrl = picUrl; 24 | } 25 | 26 | public String getMediaId() { 27 | return MediaId; 28 | } 29 | 30 | public void setMediaId(String mediaId) { 31 | MediaId = mediaId; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/.svn/text-base/TextMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.req; 2 | 3 | public class TextMsg extends BasicMsg{ 4 | private String Content; //文本消息 5 | 6 | public String getContent() { 7 | return Content; 8 | } 9 | 10 | public void setContent(String content) { 11 | Content = content; 12 | } 13 | 14 | @Override 15 | public String SetMsgType() { 16 | return "text"; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/.svn/text-base/VideoMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.req; 2 | 3 | public class VideoMsg extends BasicMsg { 4 | private String MediaId; // 视频消息媒体id,可以调用多媒体文件下载接口拉取数据。 5 | private String ThumbMediaId; // 视频消息缩略图的媒体id,可以调用多媒体文件下载接口拉取数据。 6 | 7 | @Override 8 | public String SetMsgType() { 9 | return "video"; 10 | } 11 | 12 | public String getMediaId() { 13 | return MediaId; 14 | } 15 | 16 | public void setMediaId(String mediaId) { 17 | MediaId = mediaId; 18 | } 19 | 20 | public String getThumbMediaId() { 21 | return ThumbMediaId; 22 | } 23 | 24 | public void setThumbMediaId(String thumbMediaId) { 25 | ThumbMediaId = thumbMediaId; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/.svn/text-base/VoiceMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.req; 2 | 3 | /** 4 | * 语音消息 5 | * 6 | * @author Andy 7 | */ 8 | public class VoiceMsg extends BasicMsg { 9 | private String MediaId; // 语音消息媒体id,可以调用多媒体文件下载接口拉取数据。 10 | private String Format; // 语音格式,如amr,speex等 11 | 12 | @Override 13 | public String SetMsgType() { 14 | return "voice"; 15 | } 16 | 17 | public String getMediaId() { 18 | return MediaId; 19 | } 20 | 21 | public void setMediaId(String mediaId) { 22 | MediaId = mediaId; 23 | } 24 | 25 | public String getFormat() { 26 | return Format; 27 | } 28 | 29 | public void setFormat(String format) { 30 | Format = format; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/ImageMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.req; 2 | 3 | /** 4 | * 图片消息 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ImageMsg extends BasicMsg { 10 | private String PicUrl; // 图片链接 11 | private String MediaId; // 图片消息媒体id,可以调用多媒体文件下载接口拉取数据。 12 | 13 | @Override 14 | public String SetMsgType() { 15 | return "image"; 16 | } 17 | 18 | public String getPicUrl() { 19 | return PicUrl; 20 | } 21 | 22 | public void setPicUrl(String picUrl) { 23 | PicUrl = picUrl; 24 | } 25 | 26 | public String getMediaId() { 27 | return MediaId; 28 | } 29 | 30 | public void setMediaId(String mediaId) { 31 | MediaId = mediaId; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/TextMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.req; 2 | 3 | public class TextMsg extends BasicMsg{ 4 | private String Content; //文本消息 5 | 6 | public String getContent() { 7 | return Content; 8 | } 9 | 10 | public void setContent(String content) { 11 | Content = content; 12 | } 13 | 14 | @Override 15 | public String SetMsgType() { 16 | return "text"; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/VideoMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.req; 2 | 3 | public class VideoMsg extends BasicMsg { 4 | private String MediaId; // 视频消息媒体id,可以调用多媒体文件下载接口拉取数据。 5 | private String ThumbMediaId; // 视频消息缩略图的媒体id,可以调用多媒体文件下载接口拉取数据。 6 | 7 | @Override 8 | public String SetMsgType() { 9 | return "video"; 10 | } 11 | 12 | public String getMediaId() { 13 | return MediaId; 14 | } 15 | 16 | public void setMediaId(String mediaId) { 17 | MediaId = mediaId; 18 | } 19 | 20 | public String getThumbMediaId() { 21 | return ThumbMediaId; 22 | } 23 | 24 | public void setThumbMediaId(String thumbMediaId) { 25 | ThumbMediaId = thumbMediaId; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/VoiceMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.req; 2 | 3 | /** 4 | * 语音消息 5 | * 6 | * @author Andy 7 | */ 8 | public class VoiceMsg extends BasicMsg { 9 | private String MediaId; // 语音消息媒体id,可以调用多媒体文件下载接口拉取数据。 10 | private String Format; // 语音格式,如amr,speex等 11 | 12 | @Override 13 | public String SetMsgType() { 14 | return "voice"; 15 | } 16 | 17 | public String getMediaId() { 18 | return MediaId; 19 | } 20 | 21 | public void setMediaId(String mediaId) { 22 | MediaId = mediaId; 23 | } 24 | 25 | public String getFormat() { 26 | return Format; 27 | } 28 | 29 | public void setFormat(String format) { 30 | Format = format; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/.svn/text-base/RespCustomMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | /** 4 | * 回复客服消息 5 | * @author Andy 6 | * 7 | */ 8 | public class RespCustomMsg extends RespBasicMsg{ 9 | 10 | @Override 11 | public String setMsgType() { 12 | return "transfer_customer_service"; 13 | } 14 | 15 | 16 | } 17 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/.svn/text-base/RespImgMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | import org.wechat.common.entity.resp.bean.Image; 4 | 5 | /** 6 | * 回复图片消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class RespImgMsg extends RespBasicMsg { 12 | private Image image; 13 | 14 | @Override 15 | public String setMsgType() { 16 | return "image"; 17 | } 18 | 19 | public Image getImage() { 20 | return image; 21 | } 22 | 23 | public void setImage(Image image) { 24 | this.image = image; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/.svn/text-base/RespMusicMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | import org.wechat.common.entity.resp.bean.Music; 4 | 5 | public class RespMusicMsg extends RespBasicMsg { 6 | private Music music; 7 | 8 | @Override 9 | public String setMsgType() { 10 | return "music"; 11 | } 12 | 13 | public Music getMusic() { 14 | return music; 15 | } 16 | 17 | public void setMusic(Music music) { 18 | this.music = music; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/.svn/text-base/RespTextMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | public class RespTextMsg extends RespBasicMsg { 4 | private String Content; 5 | 6 | @Override 7 | public String setMsgType() { 8 | return "text"; 9 | } 10 | 11 | public String getContent() { 12 | return Content; 13 | } 14 | 15 | public void setContent(String content) { 16 | Content = content; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/.svn/text-base/RespVideoMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | import org.wechat.common.entity.resp.bean.Video; 4 | 5 | public class RespVideoMsg extends RespBasicMsg { 6 | private Video video; 7 | 8 | @Override 9 | public String setMsgType() { 10 | return "video"; 11 | } 12 | 13 | public Video getVideo() { 14 | return video; 15 | } 16 | 17 | public void setVideo(Video video) { 18 | this.video = video; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/.svn/text-base/RespVoiceMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | import org.wechat.common.entity.resp.bean.Voice; 4 | 5 | /** 6 | * 回复语音消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class RespVoiceMsg extends RespBasicMsg { 12 | private Voice voice; 13 | 14 | @Override 15 | public String setMsgType() { 16 | return "voice"; 17 | } 18 | 19 | public Voice getVoice() { 20 | return voice; 21 | } 22 | 23 | public void setVoice(Voice voice) { 24 | this.voice = voice; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespCustomMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | /** 4 | * 回复客服消息 5 | * @author Andy 6 | * 7 | */ 8 | public class RespCustomMsg extends RespBasicMsg{ 9 | 10 | @Override 11 | public String setMsgType() { 12 | return "transfer_customer_service"; 13 | } 14 | 15 | 16 | } 17 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespImgMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | import org.wechat.common.entity.resp.bean.Image; 4 | 5 | /** 6 | * 回复图片消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class RespImgMsg extends RespBasicMsg { 12 | private Image image; 13 | 14 | @Override 15 | public String setMsgType() { 16 | return "image"; 17 | } 18 | 19 | public Image getImage() { 20 | return image; 21 | } 22 | 23 | public void setImage(Image image) { 24 | this.image = image; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespMusicMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | import org.wechat.common.entity.resp.bean.Music; 4 | 5 | public class RespMusicMsg extends RespBasicMsg { 6 | private Music music; 7 | 8 | @Override 9 | public String setMsgType() { 10 | return "music"; 11 | } 12 | 13 | public Music getMusic() { 14 | return music; 15 | } 16 | 17 | public void setMusic(Music music) { 18 | this.music = music; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespTextMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | public class RespTextMsg extends RespBasicMsg { 4 | private String Content; 5 | 6 | @Override 7 | public String setMsgType() { 8 | return "text"; 9 | } 10 | 11 | public String getContent() { 12 | return Content; 13 | } 14 | 15 | public void setContent(String content) { 16 | Content = content; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespVideoMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | import org.wechat.common.entity.resp.bean.Video; 4 | 5 | public class RespVideoMsg extends RespBasicMsg { 6 | private Video video; 7 | 8 | @Override 9 | public String setMsgType() { 10 | return "video"; 11 | } 12 | 13 | public Video getVideo() { 14 | return video; 15 | } 16 | 17 | public void setVideo(Video video) { 18 | this.video = video; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespVoiceMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp; 2 | 3 | import org.wechat.common.entity.resp.bean.Voice; 4 | 5 | /** 6 | * 回复语音消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class RespVoiceMsg extends RespBasicMsg { 12 | private Voice voice; 13 | 14 | @Override 15 | public String setMsgType() { 16 | return "voice"; 17 | } 18 | 19 | public Voice getVoice() { 20 | return voice; 21 | } 22 | 23 | public void setVoice(Voice voice) { 24 | this.voice = voice; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/.svn/text-base/Articles.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp.bean; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * 图文消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class Articles { 12 | private List list; 13 | 14 | public List getList() { 15 | return list; 16 | } 17 | 18 | public void setList(List list) { 19 | this.list = list; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/.svn/text-base/Image.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp.bean; 2 | 3 | /** 4 | * 图片消息 5 | * @author Andy 6 | * 7 | */ 8 | public class Image { 9 | private String media_id; 10 | 11 | public String getMedia_id() { 12 | return media_id; 13 | } 14 | 15 | public void setMedia_id(String mediaId) { 16 | media_id = mediaId; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/.svn/text-base/Text.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp.bean; 2 | 3 | /** 4 | * 文本消息 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class Text { 10 | private String content; // 文本内容 11 | 12 | public String getContent() { 13 | return content; 14 | } 15 | 16 | public void setContent(String content) { 17 | this.content = content; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/.svn/text-base/Voice.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp.bean; 2 | 3 | /** 4 | * 5 | * @author Andy 6 | * 7 | */ 8 | public class Voice { 9 | private String media_id; // 通过上传多媒体文件,得到的id 10 | 11 | public String getMedia_id() { 12 | return media_id; 13 | } 14 | 15 | public void setMedia_id(String mediaId) { 16 | media_id = mediaId; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Articles.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp.bean; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * 图文消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class Articles { 12 | private List list; 13 | 14 | public List getList() { 15 | return list; 16 | } 17 | 18 | public void setList(List list) { 19 | this.list = list; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Image.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp.bean; 2 | 3 | /** 4 | * 图片消息 5 | * @author Andy 6 | * 7 | */ 8 | public class Image { 9 | private String media_id; 10 | 11 | public String getMedia_id() { 12 | return media_id; 13 | } 14 | 15 | public void setMedia_id(String mediaId) { 16 | media_id = mediaId; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Text.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp.bean; 2 | 3 | /** 4 | * 文本消息 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class Text { 10 | private String content; // 文本内容 11 | 12 | public String getContent() { 13 | return content; 14 | } 15 | 16 | public void setContent(String content) { 17 | this.content = content; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Voice.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.resp.bean; 2 | 3 | /** 4 | * 5 | * @author Andy 6 | * 7 | */ 8 | public class Voice { 9 | private String media_id; // 通过上传多媒体文件,得到的id 10 | 11 | public String getMedia_id() { 12 | return media_id; 13 | } 14 | 15 | public void setMedia_id(String mediaId) { 16 | media_id = mediaId; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/results/.svn/text-base/BaseXmlObj.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.results; 2 | 3 | /** 4 | * 转换xml 的基类,如果需要转换xml的类,必须需要继承该类 5 | * @author Andy 6 | * 7 | */ 8 | public class BaseXmlObj implements java.io.Serializable{ 9 | 10 | /** 11 | * 12 | */ 13 | private static final long serialVersionUID = 1L; 14 | 15 | } 16 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/results/.svn/text-base/ResultState.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.results; 2 | 3 | /** 4 | * 结果状态码 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ResultState implements java.io.Serializable{ 10 | private int errcode; // 状态 11 | private String errmsg; // 状态 12 | 13 | public int getErrcode() { 14 | return errcode; 15 | } 16 | 17 | public void setErrcode(int errcode) { 18 | this.errcode = errcode; 19 | } 20 | 21 | public String getErrmsg() { 22 | return errmsg; 23 | } 24 | 25 | public void setErrmsg(String errmsg) { 26 | this.errmsg = errmsg; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/results/BaseXmlObj.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.results; 2 | 3 | /** 4 | * 转换xml 的基类,如果需要转换xml的类,必须需要继承该类 5 | * @author Andy 6 | * 7 | */ 8 | public class BaseXmlObj implements java.io.Serializable{ 9 | 10 | /** 11 | * 12 | */ 13 | private static final long serialVersionUID = 1L; 14 | 15 | } 16 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/results/ResultState.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.entity.results; 2 | 3 | /** 4 | * 结果状态码 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ResultState implements java.io.Serializable{ 10 | private int errcode; // 状态 11 | private String errmsg; // 状态 12 | 13 | public int getErrcode() { 14 | return errcode; 15 | } 16 | 17 | public void setErrcode(int errcode) { 18 | this.errcode = errcode; 19 | } 20 | 21 | public String getErrmsg() { 22 | return errmsg; 23 | } 24 | 25 | public void setErrmsg(String errmsg) { 26 | this.errmsg = errmsg; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/handler/.svn/text-base/BasicXmlHandler.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.handler; 2 | 3 | 4 | import org.wechat.common.entity.resp.RespBasicMsg; 5 | 6 | /** 7 | * xml 处理类 8 | * @author Andy 9 | */ 10 | public interface BasicXmlHandler{ 11 | 12 | /** 13 | * 将java对象转换为xml 14 | * @param 15 | * @param t 待转换的对象 16 | * @return 已经转换好的xml格式字符 17 | */ 18 | public String toMsgXml(RespBasicMsg msg); 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/handler/BasicXmlHandler.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.handler; 2 | 3 | 4 | import org.wechat.common.entity.resp.RespBasicMsg; 5 | 6 | /** 7 | * xml 处理类 8 | * @author Andy 9 | */ 10 | public interface BasicXmlHandler{ 11 | 12 | /** 13 | * 将java对象转换为xml 14 | * @param 15 | * @param t 待转换的对象 16 | * @return 已经转换好的xml格式字符 17 | */ 18 | public String toMsgXml(RespBasicMsg msg); 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/test/.svn/text-base/TestJsonString.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.test; 2 | 3 | import java.util.List; 4 | 5 | import org.junit.Test; 6 | 7 | import com.alibaba.fastjson.JSONArray; 8 | import com.alibaba.fastjson.JSONObject; 9 | 10 | /** 11 | * 测试json格式的字符串 12 | * @author Andy 13 | * 14 | */ 15 | public class TestJsonString { 16 | 17 | @Test 18 | public void testJsonData(){ 19 | String[] array={"openid01","openid02","openid03","openid03","openid02"}; 20 | String jsonData = JSONObject.toJSONString(array); 21 | System.out.println(jsonData); 22 | List list = JSONArray.parseArray(jsonData, String.class); 23 | System.out.println(list.size()); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/test/TestJsonString.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.test; 2 | 3 | import java.util.List; 4 | 5 | import org.junit.Test; 6 | 7 | import com.alibaba.fastjson.JSONArray; 8 | import com.alibaba.fastjson.JSONObject; 9 | 10 | /** 11 | * 测试json格式的字符串 12 | * @author Andy 13 | * 14 | */ 15 | public class TestJsonString { 16 | 17 | @Test 18 | public void testJsonData(){ 19 | String[] array={"openid01","openid02","openid03","openid03","openid02"}; 20 | String jsonData = JSONObject.toJSONString(array); 21 | System.out.println(jsonData); 22 | List list = JSONArray.parseArray(jsonData, String.class); 23 | System.out.println(list.size()); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/text-base/Constants.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.common.utils; 2 | 3 | /** 4 | * 常量 5 | * @author Andy 6 | * 7 | */ 8 | public class Constants { 9 | 10 | 11 | } 12 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/Constants.java: -------------------------------------------------------------------------------- 1 | package org.wechat.common.utils; 2 | 3 | /** 4 | * 常量 5 | * @author Andy 6 | * 7 | */ 8 | public class Constants { 9 | 10 | 11 | } 12 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.count 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.count/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.count/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | count 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.count/org/wechat/count 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | entity 33 | dir 34 | 35 | test 36 | dir 37 | 38 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.custom 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-19T20:57:37.000Z 11 | 3 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.custom/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-19T20:57:37.000Z 11 | 3 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.custom/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-19T20:57:37.000Z 11 | 3 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | custom 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.custom/org/wechat/custom 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-19T20:57:37.000Z 11 | 3 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | entity 33 | dir 34 | 35 | handler 36 | dir 37 | 38 | test 39 | dir 40 | 41 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/BasicMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | /** 4 | * 客服消息中的基类 5 | * @author Andy 6 | * 7 | */ 8 | public abstract class BasicMsg { 9 | private String touser; //普通用户openid 10 | private String msgtype=setMsgtype(); //消息类型,text 11 | public String getTouser() { 12 | return touser; 13 | } 14 | public void setTouser(String touser) { 15 | this.touser = touser; 16 | } 17 | 18 | public String getMsgtype() { 19 | return msgtype; 20 | } 21 | public abstract String setMsgtype(); 22 | 23 | } 24 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/CVideo.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Video; 4 | 5 | /** 6 | * 客服消息中的视频消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class CVideo extends Video { 12 | private String thumb_media_id; // 缩略图的媒体ID 13 | 14 | public String getThumb_media_id() { 15 | return thumb_media_id; 16 | } 17 | 18 | public void setThumb_media_id(String thumbMediaId) { 19 | thumb_media_id = thumbMediaId; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/ImageCustom.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Image; 4 | 5 | /** 6 | * 图片客服 7 | * @author Andy 8 | * 9 | */ 10 | public class ImageCustom extends BasicMsg{ 11 | private Image image; 12 | 13 | @Override 14 | public String setMsgtype() { 15 | return "image"; 16 | } 17 | 18 | public Image getImage() { 19 | return image; 20 | } 21 | 22 | public void setImage(Image image) { 23 | this.image = image; 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/MusicCustom.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Music; 4 | 5 | /** 6 | * 音乐客服消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class MusicCustom extends BasicMsg { 12 | private Music music; 13 | 14 | @Override 15 | public String setMsgtype() { 16 | return "music"; 17 | } 18 | 19 | public Music getMusic() { 20 | return music; 21 | } 22 | 23 | public void setMusic(Music music) { 24 | this.music = music; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/News.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Articles; 4 | 5 | public class News { 6 | private Articles articles; 7 | 8 | public Articles getArticles() { 9 | return articles; 10 | } 11 | 12 | public void setArticles(Articles articles) { 13 | this.articles = articles; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/NewsCustom.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | /** 4 | * 图文客服消息 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class NewsCustom extends BasicMsg { 10 | private News news; 11 | 12 | @Override 13 | public String setMsgtype() { 14 | return "news"; 15 | } 16 | 17 | public News getNews() { 18 | return news; 19 | } 20 | 21 | public void setNews(News news) { 22 | this.news = news; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/TextCustom.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Text; 4 | 5 | /** 6 | * 客服文本消息 7 | * @author Andy 8 | * 9 | */ 10 | public class TextCustom extends BasicMsg { 11 | private Text text; // 文本消息对象 12 | 13 | @Override 14 | public String setMsgtype() { 15 | return "text"; 16 | } 17 | 18 | public Text getText() { 19 | return text; 20 | } 21 | 22 | public void setText(Text text) { 23 | this.text = text; 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/VideoCustom.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | /** 4 | * 视频客服消息 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class VideoCustom extends BasicMsg { 10 | private CVideo video; 11 | 12 | @Override 13 | public String setMsgtype() { 14 | return "video"; 15 | } 16 | 17 | public CVideo getVideo() { 18 | return video; 19 | } 20 | 21 | public void setVideo(CVideo video) { 22 | this.video = video; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/VoiceCustom.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Voice; 4 | 5 | /** 6 | * 语言消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class VoiceCustom extends BasicMsg { 12 | private Voice voice; 13 | 14 | @Override 15 | public String setMsgtype() { 16 | return "voice"; 17 | } 18 | 19 | public Voice getVoice() { 20 | return voice; 21 | } 22 | 23 | public void setVoice(Voice voice) { 24 | this.voice = voice; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/BasicMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | /** 4 | * 客服消息中的基类 5 | * @author Andy 6 | * 7 | */ 8 | public abstract class BasicMsg { 9 | private String touser; //普通用户openid 10 | private String msgtype=setMsgtype(); //消息类型,text 11 | public String getTouser() { 12 | return touser; 13 | } 14 | public void setTouser(String touser) { 15 | this.touser = touser; 16 | } 17 | 18 | public String getMsgtype() { 19 | return msgtype; 20 | } 21 | public abstract String setMsgtype(); 22 | 23 | } 24 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/CVideo.java: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Video; 4 | 5 | /** 6 | * 客服消息中的视频消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class CVideo extends Video { 12 | private String thumb_media_id; // 缩略图的媒体ID 13 | 14 | public String getThumb_media_id() { 15 | return thumb_media_id; 16 | } 17 | 18 | public void setThumb_media_id(String thumbMediaId) { 19 | thumb_media_id = thumbMediaId; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/ImageCustom.java: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Image; 4 | 5 | /** 6 | * 图片客服 7 | * @author Andy 8 | * 9 | */ 10 | public class ImageCustom extends BasicMsg{ 11 | private Image image; 12 | 13 | @Override 14 | public String setMsgtype() { 15 | return "image"; 16 | } 17 | 18 | public Image getImage() { 19 | return image; 20 | } 21 | 22 | public void setImage(Image image) { 23 | this.image = image; 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/MusicCustom.java: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Music; 4 | 5 | /** 6 | * 音乐客服消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class MusicCustom extends BasicMsg { 12 | private Music music; 13 | 14 | @Override 15 | public String setMsgtype() { 16 | return "music"; 17 | } 18 | 19 | public Music getMusic() { 20 | return music; 21 | } 22 | 23 | public void setMusic(Music music) { 24 | this.music = music; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/News.java: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Articles; 4 | 5 | public class News { 6 | private Articles articles; 7 | 8 | public Articles getArticles() { 9 | return articles; 10 | } 11 | 12 | public void setArticles(Articles articles) { 13 | this.articles = articles; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/NewsCustom.java: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | /** 4 | * 图文客服消息 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class NewsCustom extends BasicMsg { 10 | private News news; 11 | 12 | @Override 13 | public String setMsgtype() { 14 | return "news"; 15 | } 16 | 17 | public News getNews() { 18 | return news; 19 | } 20 | 21 | public void setNews(News news) { 22 | this.news = news; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/TextCustom.java: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Text; 4 | 5 | /** 6 | * 客服文本消息 7 | * @author Andy 8 | * 9 | */ 10 | public class TextCustom extends BasicMsg { 11 | private Text text; // 文本消息对象 12 | 13 | @Override 14 | public String setMsgtype() { 15 | return "text"; 16 | } 17 | 18 | public Text getText() { 19 | return text; 20 | } 21 | 22 | public void setText(Text text) { 23 | this.text = text; 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/VideoCustom.java: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | /** 4 | * 视频客服消息 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class VideoCustom extends BasicMsg { 10 | private CVideo video; 11 | 12 | @Override 13 | public String setMsgtype() { 14 | return "video"; 15 | } 16 | 17 | public CVideo getVideo() { 18 | return video; 19 | } 20 | 21 | public void setVideo(CVideo video) { 22 | this.video = video; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/VoiceCustom.java: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity; 2 | 3 | import org.wechat.common.entity.resp.bean.Voice; 4 | 5 | /** 6 | * 语言消息 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class VoiceCustom extends BasicMsg { 12 | private Voice voice; 13 | 14 | @Override 15 | public String setMsgtype() { 16 | return "voice"; 17 | } 18 | 19 | public Voice getVoice() { 20 | return voice; 21 | } 22 | 23 | public void setVoice(Voice voice) { 24 | this.voice = voice; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/.svn/text-base/OnLineSession.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity.results; 2 | 3 | /** 4 | * 在线会话 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class OnLineSession { 10 | private String openid; 11 | private int createtime; 12 | 13 | public String getOpenid() { 14 | return openid; 15 | } 16 | 17 | public void setOpenid(String openid) { 18 | this.openid = openid; 19 | } 20 | 21 | public int getCreatetime() { 22 | return createtime; 23 | } 24 | 25 | public void setCreatetime(int createtime) { 26 | this.createtime = createtime; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/OnLineSession.java: -------------------------------------------------------------------------------- 1 | package org.wechat.custom.entity.results; 2 | 3 | /** 4 | * 在线会话 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class OnLineSession { 10 | private String openid; 11 | private int createtime; 12 | 13 | public String getOpenid() { 14 | return openid; 15 | } 16 | 17 | public void setOpenid(String openid) { 18 | this.openid = openid; 19 | } 20 | 21 | public int getCreatetime() { 22 | return createtime; 23 | } 24 | 25 | public void setCreatetime(int createtime) { 26 | this.createtime = createtime; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.device 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.device/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.device/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | device 30 | dir 31 | 32 | sway 33 | dir 34 | 35 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.device/org/wechat/device 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | convert 33 | dir 34 | 35 | request 36 | dir 37 | 38 | response 39 | dir 40 | 41 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/request/.svn/text-base/EditPagerRequest.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.device.request; 2 | 3 | /** 4 | * 编辑页面中发送请求的实体对象 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class EditPagerRequest extends PageRequest { 10 | private long page_id; // 摇周边页面唯一ID 11 | 12 | public long getPage_id() { 13 | return page_id; 14 | } 15 | 16 | public void setPage_id(long pageId) { 17 | page_id = pageId; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/request/EditPagerRequest.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.request; 2 | 3 | /** 4 | * 编辑页面中发送请求的实体对象 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class EditPagerRequest extends PageRequest { 10 | private long page_id; // 摇周边页面唯一ID 11 | 12 | public long getPage_id() { 13 | return page_id; 14 | } 15 | 16 | public void setPage_id(long pageId) { 17 | page_id = pageId; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/ApplyResult.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 大于500的结果类型 7 | * 8 | * @author Andy 9 | */ 10 | public class ApplyResult extends ResultState { 11 | private Apply data; 12 | 13 | public Apply getData() { 14 | return data; 15 | } 16 | 17 | public void setData(Apply data) { 18 | this.data = data; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/BeaconInfoResponse.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 获取摇周边的设备及用户信息 返回的结果集 7 | * @author Andy 8 | * 9 | */ 10 | public class BeaconInfoResponse extends ResultState { 11 | private BeaconInfoResult data; 12 | 13 | public BeaconInfoResult getData() { 14 | return data; 15 | } 16 | 17 | public void setData(BeaconInfoResult data) { 18 | this.data = data; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/CountDataResponse.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import java.util.List; 4 | 5 | import org.wechat.common.entity.results.ResultState; 6 | 7 | /** 8 | * 摇一摇统计返回的结果 9 | * @author Andy 10 | * 11 | */ 12 | public class CountDataResponse extends ResultState { 13 | 14 | private List data; 15 | 16 | public List getData() { 17 | return data; 18 | } 19 | 20 | public void setData(List data) { 21 | this.data = data; 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/DevicesData.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * 设备数据 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class DevicesData { 12 | 13 | private List devices; // 设备信息 14 | private int total_count; // 商户名下的设备总量 15 | 16 | public List getDevices() { 17 | return devices; 18 | } 19 | 20 | public void setDevices(List devices) { 21 | this.devices = devices; 22 | } 23 | 24 | public int getTotal_count() { 25 | return total_count; 26 | } 27 | 28 | public void setTotal_count(int totalCount) { 29 | total_count = totalCount; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/Less500Result.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 申请设备少于500时的对象 7 | * @author Andy 8 | * 9 | */ 10 | public class Less500Result extends ResultState { 11 | private GreaterResult data; 12 | 13 | public GreaterResult getData() { 14 | return data; 15 | } 16 | 17 | public void setData(GreaterResult data) { 18 | this.data = data; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/PageResult.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | /** 4 | * 返回的结果 5 | * @author Andy 6 | * 7 | */ 8 | public class PageResult { 9 | private long page_id; // 新增页面的页面id 10 | 11 | public long getPage_id() { 12 | return page_id; 13 | } 14 | 15 | public void setPage_id(long pageId) { 16 | page_id = pageId; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/PagerResponse.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 摇一摇中新增页面返回的结果 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class PagerResponse extends ResultState { 12 | private PageResult data; 13 | 14 | public PageResult getData() { 15 | return data; 16 | } 17 | 18 | public void setData(PageResult data) { 19 | this.data = data; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/QueryResponse.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 查询页面返回的结果 7 | * @author Andy 8 | */ 9 | public class QueryResponse extends ResultState { 10 | private QueryPager data; 11 | 12 | public QueryPager getData() { 13 | return data; 14 | } 15 | 16 | public void setData(QueryPager data) { 17 | this.data = data; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/SearchResult.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 搜索设备时返回的结果 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class SearchResult extends ResultState { 12 | private DevicesData data; 13 | 14 | public DevicesData getData() { 15 | return data; 16 | } 17 | 18 | public void setData(DevicesData data) { 19 | this.data = data; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/ApplyResult.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 大于500的结果类型 7 | * 8 | * @author Andy 9 | */ 10 | public class ApplyResult extends ResultState { 11 | private Apply data; 12 | 13 | public Apply getData() { 14 | return data; 15 | } 16 | 17 | public void setData(Apply data) { 18 | this.data = data; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/BeaconInfoResponse.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 获取摇周边的设备及用户信息 返回的结果集 7 | * @author Andy 8 | * 9 | */ 10 | public class BeaconInfoResponse extends ResultState { 11 | private BeaconInfoResult data; 12 | 13 | public BeaconInfoResult getData() { 14 | return data; 15 | } 16 | 17 | public void setData(BeaconInfoResult data) { 18 | this.data = data; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/CountDataResponse.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import java.util.List; 4 | 5 | import org.wechat.common.entity.results.ResultState; 6 | 7 | /** 8 | * 摇一摇统计返回的结果 9 | * @author Andy 10 | * 11 | */ 12 | public class CountDataResponse extends ResultState { 13 | 14 | private List data; 15 | 16 | public List getData() { 17 | return data; 18 | } 19 | 20 | public void setData(List data) { 21 | this.data = data; 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/DevicesData.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * 设备数据 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class DevicesData { 12 | 13 | private List devices; // 设备信息 14 | private int total_count; // 商户名下的设备总量 15 | 16 | public List getDevices() { 17 | return devices; 18 | } 19 | 20 | public void setDevices(List devices) { 21 | this.devices = devices; 22 | } 23 | 24 | public int getTotal_count() { 25 | return total_count; 26 | } 27 | 28 | public void setTotal_count(int totalCount) { 29 | total_count = totalCount; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/Less500Result.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 申请设备少于500时的对象 7 | * @author Andy 8 | * 9 | */ 10 | public class Less500Result extends ResultState { 11 | private GreaterResult data; 12 | 13 | public GreaterResult getData() { 14 | return data; 15 | } 16 | 17 | public void setData(GreaterResult data) { 18 | this.data = data; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/PageResult.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | /** 4 | * 返回的结果 5 | * @author Andy 6 | * 7 | */ 8 | public class PageResult { 9 | private long page_id; // 新增页面的页面id 10 | 11 | public long getPage_id() { 12 | return page_id; 13 | } 14 | 15 | public void setPage_id(long pageId) { 16 | page_id = pageId; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/PagerResponse.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 摇一摇中新增页面返回的结果 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class PagerResponse extends ResultState { 12 | private PageResult data; 13 | 14 | public PageResult getData() { 15 | return data; 16 | } 17 | 18 | public void setData(PageResult data) { 19 | this.data = data; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/QueryPager.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import java.util.List; 4 | 5 | import org.wechat.device.request.EditPagerRequest; 6 | 7 | /** 8 | * 查询页面返回值 9 | * 10 | * @author Andy 11 | * 12 | */ 13 | public class QueryPager { 14 | 15 | private List pages; 16 | private int total_count; 17 | 18 | public List getPages() { 19 | return pages; 20 | } 21 | 22 | public void setPages(List pages) { 23 | this.pages = pages; 24 | } 25 | 26 | public int getTotal_count() { 27 | return total_count; 28 | } 29 | 30 | public void setTotal_count(int totalCount) { 31 | total_count = totalCount; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/QueryResponse.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 查询页面返回的结果 7 | * @author Andy 8 | */ 9 | public class QueryResponse extends ResultState { 10 | private QueryPager data; 11 | 12 | public QueryPager getData() { 13 | return data; 14 | } 15 | 16 | public void setData(QueryPager data) { 17 | this.data = data; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/SearchResult.java: -------------------------------------------------------------------------------- 1 | package org.wechat.device.response; 2 | 3 | import org.wechat.common.entity.results.ResultState; 4 | 5 | /** 6 | * 搜索设备时返回的结果 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class SearchResult extends ResultState { 12 | private DevicesData data; 13 | 14 | public DevicesData getData() { 15 | return data; 16 | } 17 | 18 | public void setData(DevicesData data) { 19 | this.data = data; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/sway/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.device/org/wechat/sway 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | test 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.material 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.material/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.material/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | material 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.material/org/wechat/material 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | result 33 | dir 34 | 35 | test 36 | dir 37 | 38 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/.svn/text-base/OtherItem.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.material.result; 2 | 3 | public class OtherItem { 4 | private String media_id; 5 | private String name; 6 | private String update_time; 7 | 8 | public String getMedia_id() { 9 | return media_id; 10 | } 11 | 12 | public void setMedia_id(String mediaId) { 13 | media_id = mediaId; 14 | } 15 | 16 | public String getName() { 17 | return name; 18 | } 19 | 20 | public void setName(String name) { 21 | this.name = name; 22 | } 23 | 24 | public String getUpdate_time() { 25 | return update_time; 26 | } 27 | 28 | public void setUpdate_time(String updateTime) { 29 | update_time = updateTime; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/MaterMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.material.result; 2 | 3 | /** 4 | * 上传多媒体返回的数据 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class MaterMsg { 10 | private int errcode; // 错误码 11 | private String errmsg; // 错误的提示信息 12 | 13 | public int getErrcode() { 14 | return errcode; 15 | } 16 | 17 | public void setErrcode(int errcode) { 18 | this.errcode = errcode; 19 | } 20 | 21 | public String getErrmsg() { 22 | return errmsg; 23 | } 24 | 25 | public void setErrmsg(String errmsg) { 26 | this.errmsg = errmsg; 27 | } 28 | 29 | @Override 30 | public String toString() { 31 | return "MaterMsg [errcode=" + errcode + ", errmsg=" + errmsg + "]"; 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/OtherItem.java: -------------------------------------------------------------------------------- 1 | package org.wechat.material.result; 2 | 3 | public class OtherItem { 4 | private String media_id; 5 | private String name; 6 | private String update_time; 7 | 8 | public String getMedia_id() { 9 | return media_id; 10 | } 11 | 12 | public void setMedia_id(String mediaId) { 13 | media_id = mediaId; 14 | } 15 | 16 | public String getName() { 17 | return name; 18 | } 19 | 20 | public void setName(String name) { 21 | this.name = name; 22 | } 23 | 24 | public String getUpdate_time() { 25 | return update_time; 26 | } 27 | 28 | public void setUpdate_time(String updateTime) { 29 | update_time = updateTime; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.menu 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.menu/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.menu/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | menu 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.menu/org/wechat/menu 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | entity 30 | dir 31 | 32 | test 33 | dir 34 | 35 | utils 36 | dir 37 | 38 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/BasicMenu.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 基础菜单 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class BasicMenu { 10 | private String name; // 菜单的名称 11 | 12 | public String getName() { 13 | return name; 14 | } 15 | 16 | public void setName(String name) { 17 | this.name = name; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ClickMenu.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 点击事件 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ClickMenu extends BasicMenu { 10 | private String key; 11 | private String type=Menu.CLICK; 12 | 13 | public String getKey() { 14 | return key; 15 | } 16 | 17 | public void setKey(String key){ 18 | this.key = key; 19 | } 20 | public String getType() { 21 | return type; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/GroupButton.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 基础Button 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class GroupButton extends BasicMenu { 10 | private BasicMenu[] sub_button; // 菜单标题, 11 | 12 | public BasicMenu[] getSub_button() { 13 | return sub_button; 14 | } 15 | 16 | public void setSub_button(BasicMenu[] subButton) { 17 | sub_button = subButton; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/LocationSelect.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 发送位置 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class LocationSelect extends BasicMenu { 10 | private String key; 11 | private String type=Menu.LOCATION_SELECT; 12 | 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/PicSysphoto.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 系统拍照发图 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class PicSysphoto extends BasicMenu { 10 | private String key; 11 | private String sub_button[] = new String[]{}; 12 | private String type =Menu.PIC_SYSPHOTO; 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | public String[] getSub_button() { 27 | return sub_button; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/PicWeixin.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 微信发图 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class PicWeixin extends BasicMenu { 10 | private String key; 11 | private String sub_button[]; 12 | private String type =Menu.PIC_WEIXIN; 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | public String[] getSub_button() { 27 | return sub_button; 28 | } 29 | 30 | public void setSub_button(String[] sub_button) { 31 | this.sub_button = sub_button; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/PicphotoOralbum.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 拍照或者相册发图 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class PicphotoOralbum extends BasicMenu { 10 | private String key; 11 | private String sub_button[] = new String[]{}; 12 | private String type =Menu.PIC_PHOTO_OR_ALBUM; 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | public String[] getSub_button() { 27 | return sub_button; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ReturnMenu.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | 4 | /** 5 | * 返回菜单 6 | * @author Andy 7 | * 8 | */ 9 | public class ReturnMenu extends BasicMenu{ 10 | private MenuAllInfo[] sub_button; 11 | 12 | public MenuAllInfo[] getSub_button() { 13 | return sub_button; 14 | } 15 | 16 | public void setSub_button(MenuAllInfo[] subButton) { 17 | sub_button = subButton; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ScanPush.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 扫码推事件 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ScanPush extends BasicMenu { 10 | private String key; 11 | private String sub_button[] = new String[]{}; 12 | private String type =Menu.SCANCODE_PUSH; 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | public String[] getSub_button() { 27 | return sub_button; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ViewMenu.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 链接菜单 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ViewMenu extends BasicMenu { 10 | private String url; 11 | private String type=Menu.VIEW; 12 | 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getUrl() { 19 | return url; 20 | } 21 | 22 | public void setUrl(String url) { 23 | this.url = url; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/WaitMsg.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 扫码推事件且弹出“消息接收中”提示框 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class WaitMsg extends BasicMenu { 10 | private String key; 11 | private String sub_button[]= new String[]{}; 12 | private String type =Menu.SCANCODE_WAITMSG; 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | public String[] getSub_button() { 27 | return sub_button; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/BasicMenu.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 基础菜单 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class BasicMenu { 10 | private String name; // 菜单的名称 11 | 12 | public String getName() { 13 | return name; 14 | } 15 | 16 | public void setName(String name) { 17 | this.name = name; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ClickMenu.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 点击事件 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ClickMenu extends BasicMenu { 10 | private String key; 11 | private String type=Menu.CLICK; 12 | 13 | public String getKey() { 14 | return key; 15 | } 16 | 17 | public void setKey(String key){ 18 | this.key = key; 19 | } 20 | public String getType() { 21 | return type; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/GroupButton.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 基础Button 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class GroupButton extends BasicMenu { 10 | private BasicMenu[] sub_button; // 菜单标题, 11 | 12 | public BasicMenu[] getSub_button() { 13 | return sub_button; 14 | } 15 | 16 | public void setSub_button(BasicMenu[] subButton) { 17 | sub_button = subButton; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/LocationSelect.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 发送位置 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class LocationSelect extends BasicMenu { 10 | private String key; 11 | private String type=Menu.LOCATION_SELECT; 12 | 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/PicSysphoto.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 系统拍照发图 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class PicSysphoto extends BasicMenu { 10 | private String key; 11 | private String sub_button[] = new String[]{}; 12 | private String type =Menu.PIC_SYSPHOTO; 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | public String[] getSub_button() { 27 | return sub_button; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/PicWeixin.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 微信发图 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class PicWeixin extends BasicMenu { 10 | private String key; 11 | private String sub_button[]; 12 | private String type =Menu.PIC_WEIXIN; 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | public String[] getSub_button() { 27 | return sub_button; 28 | } 29 | 30 | public void setSub_button(String[] sub_button) { 31 | this.sub_button = sub_button; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/PicphotoOralbum.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 拍照或者相册发图 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class PicphotoOralbum extends BasicMenu { 10 | private String key; 11 | private String sub_button[] = new String[]{}; 12 | private String type =Menu.PIC_PHOTO_OR_ALBUM; 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | public String[] getSub_button() { 27 | return sub_button; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ReturnMenu.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | 4 | /** 5 | * 返回菜单 6 | * @author Andy 7 | * 8 | */ 9 | public class ReturnMenu extends BasicMenu{ 10 | private MenuAllInfo[] sub_button; 11 | 12 | public MenuAllInfo[] getSub_button() { 13 | return sub_button; 14 | } 15 | 16 | public void setSub_button(MenuAllInfo[] subButton) { 17 | sub_button = subButton; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ScanPush.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 扫码推事件 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ScanPush extends BasicMenu { 10 | private String key; 11 | private String sub_button[] = new String[]{}; 12 | private String type =Menu.SCANCODE_PUSH; 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | public String[] getSub_button() { 27 | return sub_button; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ViewMenu.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 链接菜单 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ViewMenu extends BasicMenu { 10 | private String url; 11 | private String type=Menu.VIEW; 12 | 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getUrl() { 19 | return url; 20 | } 21 | 22 | public void setUrl(String url) { 23 | this.url = url; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/WaitMsg.java: -------------------------------------------------------------------------------- 1 | package org.wechat.menu.entity; 2 | 3 | /** 4 | * 扫码推事件且弹出“消息接收中”提示框 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class WaitMsg extends BasicMenu { 10 | private String key; 11 | private String sub_button[]= new String[]{}; 12 | private String type =Menu.SCANCODE_WAITMSG; 13 | 14 | public String getType() { 15 | return type; 16 | } 17 | 18 | public String getKey() { 19 | return key; 20 | } 21 | 22 | public void setKey(String key) { 23 | this.key = key; 24 | } 25 | 26 | public String[] getSub_button() { 27 | return sub_button; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.msg 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.msg/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.msg/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | msg 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.msg/org/wechat/msg 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | entity 33 | dir 34 | 35 | result 36 | dir 37 | 38 | templet 39 | dir 40 | 41 | test 42 | dir 43 | 44 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/result/.svn/text-base/SendStatus.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.msg.result; 2 | 3 | /** 4 | * 发送的状态 5 | * @author Andy 6 | * 7 | */ 8 | public class SendStatus { 9 | private long msg_id; // 消息的id 10 | private String msg_status; // 消息的状态 11 | 12 | 13 | 14 | public long getMsg_id() { 15 | return msg_id; 16 | } 17 | 18 | public void setMsg_id(long msgId) { 19 | msg_id = msgId; 20 | } 21 | 22 | public String getMsg_status() { 23 | return msg_status; 24 | } 25 | 26 | public void setMsg_status(String msgStatus) { 27 | msg_status = msgStatus; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/result/SendStatus.java: -------------------------------------------------------------------------------- 1 | package org.wechat.msg.result; 2 | 3 | /** 4 | * 发送的状态 5 | * @author Andy 6 | * 7 | */ 8 | public class SendStatus { 9 | private long msg_id; // 消息的id 10 | private String msg_status; // 消息的状态 11 | 12 | 13 | 14 | public long getMsg_id() { 15 | return msg_id; 16 | } 17 | 18 | public void setMsg_id(long msgId) { 19 | msg_id = msgId; 20 | } 21 | 22 | public String getMsg_status() { 23 | return msg_status; 24 | } 25 | 26 | public void setMsg_status(String msgStatus) { 27 | msg_status = msgStatus; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/templet/.svn/text-base/BaseTemplet.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.msg.templet; 2 | 3 | import java.util.TreeMap; 4 | 5 | /** 6 | * 模板基础选项 7 | * @author Andy 8 | */ 9 | public class BaseTemplet{ 10 | 11 | /** 12 | * 获取参数 13 | * @param color 文字的颜色 14 | * @param value 文字的值 15 | * @return 获取已经封装好的 TreeMap 集合 16 | */ 17 | public static TreeMap ThempleItem(String value,String color){ 18 | TreeMap params = new TreeMap(); 19 | params.put("value", value); 20 | params.put("color", color); 21 | return params; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/templet/BaseTemplet.java: -------------------------------------------------------------------------------- 1 | package org.wechat.msg.templet; 2 | 3 | import java.util.TreeMap; 4 | 5 | /** 6 | * 模板基础选项 7 | * @author Andy 8 | */ 9 | public class BaseTemplet{ 10 | 11 | /** 12 | * 获取参数 13 | * @param color 文字的颜色 14 | * @param value 文字的值 15 | * @return 获取已经封装好的 TreeMap 集合 16 | */ 17 | public static TreeMap ThempleItem(String value,String color){ 18 | TreeMap params = new TreeMap(); 19 | params.put("value", value); 20 | params.put("color", color); 21 | return params; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.pay 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.pay/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.pay/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | pay 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.pay/org/wechat/pay 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | annotation 30 | dir 31 | 32 | conn 33 | dir 34 | 35 | handler 36 | dir 37 | 38 | request 39 | dir 40 | 41 | response 42 | dir 43 | 44 | test 45 | dir 46 | 47 | utils 48 | dir 49 | 50 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/annotation/.svn/text-base/NotSign.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.pay.annotation; 2 | 3 | import java.lang.annotation.Documented; 4 | import java.lang.annotation.ElementType; 5 | import java.lang.annotation.Retention; 6 | import java.lang.annotation.RetentionPolicy; 7 | import java.lang.annotation.Target; 8 | 9 | /** 10 | * 该注解表示不参与签名的字段 11 | * 标识该注解的字段不参与签名,这里主要考虑到有些常量不需要参与签名的 12 | * @author Andy 13 | * 14 | */ 15 | @Documented 16 | @Target(ElementType.FIELD) 17 | @Retention(value=RetentionPolicy.RUNTIME) 18 | public @interface NotSign { 19 | 20 | boolean value() default true; 21 | } 22 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/annotation/NotSign.java: -------------------------------------------------------------------------------- 1 | package org.wechat.pay.annotation; 2 | 3 | import java.lang.annotation.Documented; 4 | import java.lang.annotation.ElementType; 5 | import java.lang.annotation.Retention; 6 | import java.lang.annotation.RetentionPolicy; 7 | import java.lang.annotation.Target; 8 | 9 | /** 10 | * 该注解表示不参与签名的字段 11 | * 标识该注解的字段不参与签名,这里主要考虑到有些常量不需要参与签名的 12 | * @author Andy 13 | * 14 | */ 15 | @Documented 16 | @Target(ElementType.FIELD) 17 | @Retention(value=RetentionPolicy.RUNTIME) 18 | public @interface NotSign { 19 | 20 | boolean value() default true; 21 | } 22 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/ShortUrlRequest.java: -------------------------------------------------------------------------------- 1 | package org.wechat.pay.request; 2 | 3 | import java.util.Map; 4 | import java.util.TreeMap; 5 | 6 | /** 7 | * 转换短链接 8 | * @author Andy 9 | * 10 | */ 11 | public class ShortUrlRequest extends BasicPayParams{ 12 | private String long_url; //url链接 13 | 14 | public String getLong_url() { 15 | return long_url; 16 | } 17 | 18 | public void setLong_url(String longUrl) { 19 | long_url = longUrl; 20 | } 21 | 22 | /*@Override 23 | public Map getParams() { 24 | Map params = new TreeMap(); 25 | params.put("long_url",this.long_url); 26 | params.putAll(getCommonParams()); 27 | return params; 28 | } 29 | */ 30 | 31 | } 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/.svn/text-base/QueryOrderReturnSuccess.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.pay.response; 2 | 3 | /** 4 | * 查询订单返回return_code为SUCCESS时候返回 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | /*public class QueryOrderReturnSuccess extends BasicReturnSuccess { 10 | 11 | }*/ 12 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/.svn/text-base/ReportResponse.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.pay.response; 2 | 3 | /** 4 | * 测速上报 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ReportResponse { 10 | private String result_code; 11 | 12 | public String getResult_code() { 13 | return result_code; 14 | } 15 | 16 | public void setResult_code(String resultCode) { 17 | result_code = resultCode; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/QueryOrderReturnSuccess.java: -------------------------------------------------------------------------------- 1 | package org.wechat.pay.response; 2 | 3 | /** 4 | * 查询订单返回return_code为SUCCESS时候返回 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | /*public class QueryOrderReturnSuccess extends BasicReturnSuccess { 10 | 11 | }*/ 12 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/ReportResponse.java: -------------------------------------------------------------------------------- 1 | package org.wechat.pay.response; 2 | 3 | /** 4 | * 测速上报 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class ReportResponse { 10 | private String result_code; 11 | 12 | public String getResult_code() { 13 | return result_code; 14 | } 15 | 16 | public void setResult_code(String resultCode) { 17 | result_code = resultCode; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 270 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.redpack 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-09-20T09:14:43.000000Z 11 | 270 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | 30 | 31 | 32 | 33 | 34 | 0 35 | 36 | org 37 | dir 38 | 39 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 270 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.redpack/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-09-20T09:14:43.000000Z 11 | 270 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | 30 | 31 | 32 | 33 | 34 | 0 35 | 36 | wechat 37 | dir 38 | 39 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 270 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.redpack/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-09-20T09:14:43.000000Z 11 | 270 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | 30 | 31 | 32 | 33 | 34 | 0 35 | 36 | coupon 37 | dir 38 | 39 | redpack 40 | dir 41 | 42 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/coupon/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 289 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.redpack/org/wechat/coupon 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-11-17T05:56:03.000000Z 11 | 289 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | 30 | 31 | 32 | 33 | 34 | 0 35 | 36 | request 37 | dir 38 | 39 | respose 40 | dir 41 | 42 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/coupon/respose/.svn/text-base/CouponRespose.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.coupon.respose; 2 | 3 | public class CouponRespose { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/coupon/respose/CouponRespose.java: -------------------------------------------------------------------------------- 1 | package org.wechat.coupon.respose; 2 | 3 | public class CouponRespose { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 270 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.redpack/org/wechat/redpack 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-09-20T09:14:43.000000Z 11 | 270 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | 30 | 31 | 32 | 33 | 34 | 0 35 | 36 | conn 37 | dir 38 | 39 | request 40 | dir 41 | 42 | respose 43 | dir 44 | 45 | test 46 | dir 47 | 48 | utils 49 | dir 50 | 51 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/.svn/text-base/test.txt.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/.svn/text-base/test.txt.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/test.txt -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/utils/.svn/text-base/CouponUtils.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.redpack.utils; 2 | 3 | /** 4 | * 发放优惠卷的工具类 5 | * @author Andy 6 | * 7 | */ 8 | public class CouponUtils { 9 | 10 | 11 | } 12 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/utils/CouponUtils.java: -------------------------------------------------------------------------------- 1 | package org.wechat.redpack.utils; 2 | 3 | /** 4 | * 发放优惠卷的工具类 5 | * @author Andy 6 | * 7 | */ 8 | public class CouponUtils { 9 | 10 | 11 | } 12 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.semantic/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.semantic 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.semantic/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.semantic/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.semantic/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.semantic/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | semantic 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.semantic/org/wechat/semantic/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.semantic/org/wechat/semantic 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-15T17:27:59.000Z 11 | 2 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.shakearound 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T09:52:29.000Z 11 | 10 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.shakearound/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T09:52:29.000Z 11 | 10 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.shakearound/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T09:52:29.000Z 11 | 10 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | shakea 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/shakea/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.shakearound/org/wechat/shakea 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T09:52:29.000Z 11 | 10 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | request 33 | dir 34 | 35 | result 36 | dir 37 | 38 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.ticket 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-19T20:57:37.000Z 11 | 3 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.ticket/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-19T20:57:37.000Z 11 | 3 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wechat 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.ticket/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-19T20:57:37.000Z 11 | 3 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | ticket 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/wechat/ticket/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.ticket/org/wechat/ticket 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-06-19T20:57:37.000Z 11 | 3 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | test 33 | dir 34 | 35 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 11 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.user 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T15:36:22.000Z 11 | 11 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | org 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 268 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.user/org 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-09-19T16:21:03.000Z 11 | 268 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | wecaht 30 | dir 31 | 32 | wechat 33 | dir 34 | 35 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wecaht/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 268 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.user/org/wecaht 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T15:36:22.000Z 11 | 11 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | user 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wecaht/user/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 268 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.user/org/wecaht/user 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T15:36:22.000Z 11 | 11 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | menum 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wecaht/user/menum/.svn/text-base/AuthType.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wecaht.user.menum; 2 | 3 | /** 4 | * 授权方式的枚举类型 5 | * 6 | snsapi_base (不弹出授权页面,直接跳转,只能获取用户openid), 7 | * snsapi_userinfo (弹出授权页面,可通过openid拿到昵称、性别、所在地。并且,即使在未关注的情况下,只要用户授权,也能获取其信息) 8 | * @author Andy 9 | * 10 | */ 11 | public enum AuthType { 12 | snsapi_base,snsapi_userinfo 13 | } 14 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wecaht/user/menum/AuthType.java: -------------------------------------------------------------------------------- 1 | package org.wecaht.user.menum; 2 | 3 | /** 4 | * 授权方式的枚举类型 5 | * 6 | snsapi_base (不弹出授权页面,直接跳转,只能获取用户openid), 7 | * snsapi_userinfo (弹出授权页面,可通过openid拿到昵称、性别、所在地。并且,即使在未关注的情况下,只要用户授权,也能获取其信息) 8 | * @author Andy 9 | * 10 | */ 11 | public enum AuthType { 12 | snsapi_base,snsapi_userinfo 13 | } 14 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 268 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.user/org/wechat 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T15:36:22.000Z 11 | 11 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | user 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 268 5 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall/project/wechatSource/org.wechat.user/org/wechat/user 6 | svn://git.oschina.net/andyTeam/andyFinalyWechatMall 7 | 8 | 9 | 10 | 2015-07-03T15:36:22.000Z 11 | 11 12 | 划不出的界限 <940753574@qq.com> 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 8fc183ab-9441-4c4a-9638-62d1758ddc8a 28 | 29 | conn 30 | dir 31 | 32 | entity 33 | dir 34 | 35 | menum 36 | dir 37 | 38 | request 39 | dir 40 | 41 | test 42 | dir 43 | 44 | utils 45 | dir 46 | 47 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/menum/.svn/text-base/AuthType.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.user.menum; 2 | 3 | /** 4 | * 授权方式的枚举类型 5 | * 6 | snsapi_base (不弹出授权页面,直接跳转,只能获取用户openid), 7 | * snsapi_userinfo (弹出授权页面,可通过openid拿到昵称、性别、所在地。并且,即使在未关注的情况下,只要用户授权,也能获取其信息) 8 | * @author Andy 9 | * 10 | */ 11 | public enum AuthType { 12 | snsapi_base,snsapi_userinfo 13 | } 14 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/menum/AuthType.java: -------------------------------------------------------------------------------- 1 | package org.wechat.user.menum; 2 | 3 | /** 4 | * 授权方式的枚举类型 5 | * 6 | snsapi_base (不弹出授权页面,直接跳转,只能获取用户openid), 7 | * snsapi_userinfo (弹出授权页面,可通过openid拿到昵称、性别、所在地。并且,即使在未关注的情况下,只要用户授权,也能获取其信息) 8 | * @author Andy 9 | * 10 | */ 11 | public enum AuthType { 12 | snsapi_base,snsapi_userinfo 13 | } 14 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/request/.svn/text-base/BatchGet.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.user.request; 2 | 3 | /** 4 | * 批量获取信息的请求 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class BatchGet implements java.io.Serializable{ 10 | private String openid; // openid 11 | private String lang; // 语言 12 | 13 | public String getOpenid() { 14 | return openid; 15 | } 16 | 17 | public void setOpenid(String openid) { 18 | this.openid = openid; 19 | } 20 | 21 | public String getLang() { 22 | return lang; 23 | } 24 | 25 | public void setLang(String lang) { 26 | this.lang = lang; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/request/.svn/text-base/BatchGetRequest.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.user.request; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * 批量获取用户基本信息请求参数 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class BatchGetRequest { 12 | private List user_list; 13 | 14 | public List getUser_list() { 15 | return user_list; 16 | } 17 | 18 | public void setUser_list(List user_list) { 19 | this.user_list = user_list; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/request/BatchGet.java: -------------------------------------------------------------------------------- 1 | package org.wechat.user.request; 2 | 3 | /** 4 | * 批量获取信息的请求 5 | * 6 | * @author Andy 7 | * 8 | */ 9 | public class BatchGet implements java.io.Serializable{ 10 | private String openid; // openid 11 | private String lang; // 语言 12 | 13 | public String getOpenid() { 14 | return openid; 15 | } 16 | 17 | public void setOpenid(String openid) { 18 | this.openid = openid; 19 | } 20 | 21 | public String getLang() { 22 | return lang; 23 | } 24 | 25 | public void setLang(String lang) { 26 | this.lang = lang; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/request/BatchGetRequest.java: -------------------------------------------------------------------------------- 1 | package org.wechat.user.request; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * 批量获取用户基本信息请求参数 7 | * 8 | * @author Andy 9 | * 10 | */ 11 | public class BatchGetRequest { 12 | private List user_list; 13 | 14 | public List getUser_list() { 15 | return user_list; 16 | } 17 | 18 | public void setUser_list(List user_list) { 19 | this.user_list = user_list; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/test/.svn/text-base/TestList.java.svn-base: -------------------------------------------------------------------------------- 1 | package org.wechat.user.test; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | 6 | import org.junit.Test; 7 | 8 | /** 9 | * 测试集合 10 | * @author Andy 11 | * 12 | */ 13 | public class TestList { 14 | 15 | 16 | @Test 17 | public void testList(){ 18 | List list = new ArrayList(); 19 | for(int i = 0;i<100;i++){ 20 | list.add("list---->"+i); 21 | } 22 | List newList = list.subList(0,100); 23 | System.out.println(newList.size()); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/test/TestList.java: -------------------------------------------------------------------------------- 1 | package org.wechat.user.test; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | 6 | import org.junit.Test; 7 | 8 | /** 9 | * 测试集合 10 | * @author Andy 11 | * 12 | */ 13 | public class TestList { 14 | 15 | 16 | @Test 17 | public void testList(){ 18 | List list = new ArrayList(); 19 | for(int i = 0;i<100;i++){ 20 | list.add("list---->"+i); 21 | } 22 | List newList = list.subList(0,100); 23 | System.out.println(newList.size()); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /source/wechatSource/src/.svn/text-base/test.txt.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/src/.svn/text-base/test.txt.svn-base -------------------------------------------------------------------------------- /source/wechatSource/src/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/bc60845e0dc82e57606084e9bf63d9baf29f2e22/source/wechatSource/src/test.txt --------------------------------------------------------------------------------