15 lines
367 B
Java
15 lines
367 B
Java
package com.ghy.web.service;
|
|
|
|
import com.ghy.web.pojo.vo.CertNoTwoElementReq;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
/**
|
|
* <p>阿里云api合集,二次包装在服务内</p>
|
|
* @author clunt
|
|
*/
|
|
public interface AliCloudService {
|
|
|
|
void certNoTwoElementVerification(@RequestBody CertNoTwoElementReq certNoTwoElementReq) throws Exception;
|
|
|
|
}
|