增加异步注解

This commit is contained in:
zhangqinbin
2022-01-14 12:06:33 +08:00
parent 64fc286e33
commit aead83c5f7

View File

@ -24,6 +24,7 @@ import org.apache.commons.io.IOUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.stereotype.Service;
import java.io.InputStream;
@ -39,6 +40,7 @@ import static com.chinaunicom.mall.ebtp.common.uniBss.service.UniBssServiceImpl.
*
*/
@Slf4j
@EnableAsync
@Service
public class CrypConfigureServiceImpl extends BaseServiceImpl<CrypConfigureMapper,CrypConfigure> implements ICrypConfigureService {