ghy-all/ghy-admin/src/main/java/com/ghy/web/service/AliCloudService.java

15 lines
367 B
Java
Raw Normal View History

2024-11-18 13:41:57 +08:00
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;
}