java110
2023-06-21 977753d3679f5d9211f4c635e9c5a48bbe7805b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.java110.common.bmo.logSystemError;
 
import com.java110.po.log.LogSystemErrorPo;
import org.springframework.http.ResponseEntity;
public interface ISaveLogSystemErrorBMO {
 
 
    /**
     * 添加系统异常
     * add by wuxw
     * @param logSystemErrorPo
     * @return
     */
    ResponseEntity<String> save(LogSystemErrorPo logSystemErrorPo);
 
 
}