update 对公会员对象

This commit is contained in:
2023-07-06 10:48:35 +08:00
parent 142a9f53d7
commit 763282fcdd
5 changed files with 65 additions and 19 deletions

View File

@@ -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;
}