zj
2025-02-25 dd315d5732e14fcf3df71e0cf213cc442bd8607b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package project.user.kyc;
 
import kernel.exception.BusinessException;
 
public interface KycHighLevelService {
    public KycHighLevel get(String partyId);
 
    /**
     * 申请或修改实名认证
     */
    public void save(KycHighLevel entity);
 
    /**
     * 验证审核结果
     */
    public String checkApplyResult(String partyId) throws BusinessException;
 
    /**
     * 删除高级认证
     * 
     * @param partyId
     */
    public void delete(String partyId);
}