Fancy
2024-06-21 d7e416ca3ef54e449cd54feb3577d5199d8f6ade
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dy.pmsGlobal.daoBa;
 
import com.dy.pmsGlobal.pojoBa.BaLog;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
@Mapper
public interface BaLogMapper {
    int insert(BaLog record);
 
    int insertSelective(BaLog record);
 
    BaLog selectByPrimaryKey(Long id);
 
    List<BaLog> selectSome(Map<String, Object> params);
 
    Long selectSomeCount(Map<String, Object> params);
}