liuxm
2024-04-23 e5bf216882f1f523bf32496a02ee2d7b6cb6a3cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
}