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