Administrator
2023-12-07 a67079c94a32b79366342cb95cc71bbeb21a5ee6
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);
}