liurunyu
2023-12-07 884e0626b166f832f49efe089b4d8d6439a04325
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dy.pipIrrGlobal.daoSe;
 
import com.dy.pipIrrGlobal.pojoSe.SeActiveCardHistory;
 
/**
 * @author ZhuBaoMin
 * @date 2023/12/7 9:06
 * @LastEditTime 2023/12/7 9:06
 * @Description
 */
public interface SeActiveCardHistoryMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(SeActiveCardHistory record);
 
    int insertSelective(SeActiveCardHistory record);
 
    SeActiveCardHistory selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(SeActiveCardHistory record);
 
    int updateByPrimaryKey(SeActiveCardHistory record);
}