sunshine
2024-11-05 53bd8a8d8184b3f19695b756ee78f343cdb9b9b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.nova.sankuai.service;
 
import com.nova.sankuai.domain.api.jiniu.JnRegisterResponse;
import com.nova.sankuai.domain.api.jiniu.JnRequest;
import com.nova.sankuai.domain.api.jiniu.JnResponse;
 
/**
 * <p>
 * description
 * </p>
 *
 * @author denglb 2022/7/13
 */
public interface IJnService {
 
    JnResponse checkUserPhone(String userPhone);
 
    JnRegisterResponse register(JnRequest request, String secretKey, String url, String appId, String type);
}