Fancy
2024-07-04 ddd56a8f37eb47d933a7064be9341feb8dbd8165
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);
}