java110
2023-01-29 01ae4444d62fbd0c09942ffbd66c79bac2057ca9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.java110.service.smo.impl;
 
import com.java110.intf.common.ILogSystemErrorInnerServiceSMO;
import com.java110.po.logSystemError.LogSystemErrorPo;
import com.java110.service.smo.ISaveSystemErrorSMO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
 
/**
 * @ClassName SaveTransactionLogSMOImpl
 * @Description TODO
 * @Author wuxw
 * @Date 2020/11/16 0:43
 * @Version 1.0
 * add by wuxw 2020/11/16
 **/
@Service
public class SaveSystemErrorSMOImpl implements ISaveSystemErrorSMO {
 
    @Autowired(required = false)
    private ILogSystemErrorInnerServiceSMO systemErrorInnerServiceSMOImpl;
 
    @Override
    @Async
    public void saveLog(LogSystemErrorPo logSystemErrorPo) {
        systemErrorInnerServiceSMOImpl.saveLogSystemError(logSystemErrorPo);
    }
}