kongdeqiang
2022-12-16 daf6a95086087ec99232eea8b4648b7541881f7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.wgcloud.mapper;
 
import com.wgcloud.entity.FailureLogging;
import com.wgcloud.entity.WorkLogging;
import org.springframework.stereotype.Repository;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName FailureLoggingMapper.java
 * @Description TODO
 * @createTime 2022年12月16日 17:32:00
 */
@Repository
public interface FailureLoggingMapper {
 
    public void save(FailureLogging failureLogging) throws Exception;
}