11.8kaifa

This commit is contained in:
hejinbo
2023-11-08 17:47:59 +08:00
parent 8c890c415a
commit 1cdf3abc30
5 changed files with 203 additions and 20 deletions
@@ -33,6 +33,28 @@ public class DeptIdentify extends BaseEntity {
/** 印章名称 */
private String sealName;
/** 机构账号ID */
private String orgId;
/** 认证授权流程ID */
private String authFlowId;
public String getAuthFlowId() {
return authFlowId;
}
public void setAuthFlowId(String authFlowId) {
this.authFlowId = authFlowId;
}
public String getOrgId() {
return orgId;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
public String getSealName() {
return sealName;
}