com.alipay.api.domain.Data Java Examples
The following examples show how to use
com.alipay.api.domain.Data.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AlipayGzuserinfoServiceImpl.java From jeewx with Apache License 2.0 | 5 votes |
@Override public void syncGzuserinfos() { // TODO Auto-generated method stub try { //update-begin--author:zhangjiaqiang Date:20161108 for:#1487 【开源项目】开源支付窗服务窗单公众号项目 AlipayMobilePublicFollowListResponse response = JwGetUserInforMationAPI.followlistQuery(null, new GetUserInfoMateon(),alipayAccountService.getAlipayConfig()); //update-begin--author:zhangjiaqiang Date:20161108 for:#1487 【开源项目】开源支付窗服务窗单公众号项目 Data data = response.getData(); List<String> useridlist = data.getUserIdList(); for(String id :useridlist){ //update-begin--author:zhangjiaqiang Date:20161108 for:#1487 【开源项目】开源支付窗服务窗单公众号项目 AlipayGzuserinfo tempUser = alipayGzuserinfoDao.getByUserid(id); if(tempUser == null){ AlipayGzuserinfo user = new AlipayGzuserinfo(); user.setAccountid(SystemUtil.getOnlieAlipayAccountId()); user.setUserid(id); user.setSubscribeStatus("1"); String randomSeed = UUID.randomUUID().toString().replaceAll("-", "").toUpperCase(); user.setId(randomSeed); user.setCreateDate(new Date()); alipayGzuserinfoDao.insert(user); } //update-end--author:zhangjiaqiang Date:20161108 for:#1487 【开源项目】开源支付窗服务窗单公众号项目 } } catch (AlipayApiException e) { // TODO Auto-generated catch block e.printStackTrace(); } }
Example #2
Source File: AlipayMobilePublicFollowListResponse.java From alipay-sdk-java-all with Apache License 2.0 | 4 votes |
public void setData(Data data) { this.data = data; }
Example #3
Source File: AlipayMobilePublicFollowListResponse.java From alipay-sdk-java-all with Apache License 2.0 | 4 votes |
public Data getData( ) { return this.data; }
Example #4
Source File: AlipayMobileStdPublicFollowListResponse.java From alipay-sdk-java-all with Apache License 2.0 | 4 votes |
public void setData(Data data) { this.data = data; }
Example #5
Source File: AlipayMobileStdPublicFollowListResponse.java From alipay-sdk-java-all with Apache License 2.0 | 4 votes |
public Data getData( ) { return this.data; }
Example #6
Source File: AlipayMobilePublicFollowListResponse.java From alipay-sdk with Apache License 2.0 | 4 votes |
public void setData(Data data) { this.data = data; }
Example #7
Source File: AlipayMobilePublicFollowListResponse.java From alipay-sdk with Apache License 2.0 | 4 votes |
public Data getData( ) { return this.data; }
Example #8
Source File: AlipayMobileStdPublicFollowListResponse.java From alipay-sdk with Apache License 2.0 | 4 votes |
public void setData(Data data) { this.data = data; }
Example #9
Source File: AlipayMobileStdPublicFollowListResponse.java From alipay-sdk with Apache License 2.0 | 4 votes |
public Data getData( ) { return this.data; }
Example #10
Source File: AlipayMobilePublicFollowListResponse.java From pay with Apache License 2.0 | 4 votes |
public void setData(Data data) { this.data = data; }
Example #11
Source File: AlipayMobilePublicFollowListResponse.java From pay with Apache License 2.0 | 4 votes |
public Data getData( ) { return this.data; }
Example #12
Source File: AlipayMobileStdPublicFollowListResponse.java From pay with Apache License 2.0 | 4 votes |
public void setData(Data data) { this.data = data; }
Example #13
Source File: AlipayMobileStdPublicFollowListResponse.java From pay with Apache License 2.0 | 4 votes |
public Data getData( ) { return this.data; }