mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-28 19:18:00 +08:00
update 对公会员对象
This commit is contained in:
@@ -13,7 +13,6 @@ import com.huifu.adapay.core.exception.BaseAdaPayException;
|
|||||||
import com.huifu.adapay.model.Refund;
|
import com.huifu.adapay.model.Refund;
|
||||||
import com.jsowell.JsowellApplication;
|
import com.jsowell.JsowellApplication;
|
||||||
import com.jsowell.adapay.service.AdapayMemberService;
|
import com.jsowell.adapay.service.AdapayMemberService;
|
||||||
import com.jsowell.adapay.vo.AdapayMemberInfoVO;
|
|
||||||
import com.jsowell.common.constant.CacheConstants;
|
import com.jsowell.common.constant.CacheConstants;
|
||||||
import com.jsowell.common.constant.Constants;
|
import com.jsowell.common.constant.Constants;
|
||||||
import com.jsowell.common.core.domain.entity.SysDictData;
|
import com.jsowell.common.core.domain.entity.SysDictData;
|
||||||
@@ -173,13 +172,9 @@ public class SpringBootTestController {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testQueryCorpMember() {
|
public void testQueryCorpMember() {
|
||||||
// String filePath = JsowellConfig.getUploadPath();
|
|
||||||
// System.out.println(filePath);
|
|
||||||
|
|
||||||
String s = "ACM88033859";
|
|
||||||
try {
|
try {
|
||||||
AdapayMemberInfoVO adapayMemberInfoVO = adapayMemberService.queryCorpAdapayMemberInfo(s);
|
Map<String, Object> map = adapayMemberService.selectAdapayMember("5");
|
||||||
System.out.println(adapayMemberInfoVO);
|
System.out.println(map);
|
||||||
} catch (BaseAdaPayException e) {
|
} catch (BaseAdaPayException e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,33 @@
|
|||||||
|
package com.jsowell.adapay.response;
|
||||||
|
|
||||||
|
import lombok.*;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
@Builder
|
||||||
|
public class QueryCorpMemberResponse {
|
||||||
|
private String memberId;
|
||||||
|
private String legal_person;
|
||||||
|
private String address;
|
||||||
|
private String audit_state;
|
||||||
|
private String area_code;
|
||||||
|
private String legal_mp;
|
||||||
|
private String prov_code;
|
||||||
|
private String zip_code;
|
||||||
|
private String audit_desc;
|
||||||
|
private String business_scope;
|
||||||
|
private String legal_cert_id;
|
||||||
|
private String legal_cert_id_expires;
|
||||||
|
private String telphone;
|
||||||
|
private String prod_mode;
|
||||||
|
private String name;
|
||||||
|
private String social_credit_code;
|
||||||
|
private String social_credit_code_expires;
|
||||||
|
private String app_id;
|
||||||
|
private String email;
|
||||||
|
private String status;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -232,6 +232,7 @@ public class AdapayMemberService {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
package com.jsowell.adapay.vo;
|
|
||||||
|
|
||||||
import lombok.*;
|
|
||||||
|
|
||||||
@Getter
|
|
||||||
@Setter
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
@Builder
|
|
||||||
public class AdapayCorpMemberInfoVO {
|
|
||||||
private String memberId;
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
package com.jsowell.adapay.vo;
|
||||||
|
|
||||||
|
import lombok.*;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
@Builder
|
||||||
|
public class AdapayCorpMemberVO {
|
||||||
|
private String memberId;
|
||||||
|
private String legalPerson;
|
||||||
|
private String address;
|
||||||
|
private String auditState;
|
||||||
|
private String areaCode;
|
||||||
|
private String legalMp;
|
||||||
|
private String provCode;
|
||||||
|
private String zipCode;
|
||||||
|
private String auditDesc;
|
||||||
|
private String businessScope;
|
||||||
|
private String legalCertId;
|
||||||
|
private String legalCertIdExpires;
|
||||||
|
private String telphone;
|
||||||
|
private String prodMode;
|
||||||
|
private String name;
|
||||||
|
private String socialCreditCode;
|
||||||
|
private String socialCreditCodeExpires;
|
||||||
|
private String email;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user