Administrator
2024-01-22 8394c7de622940269dca3160b8e74a99bcb87a4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.dy.pipIrrGlobal.daoSe;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoSe.SeWalletRechargeHistory;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @author ZhuBaoMin
 * @date 2023/12/12 9:06
 * @LastEditTime 2023/12/12 9:06
 * @Description
 */
 
@Mapper
public interface SeWalletRechargeHistoryMapper extends BaseMapper<SeWalletRechargeHistory> {
    int deleteByPrimaryKey(Long id);
 
    int insert(SeWalletRechargeHistory record);
 
    int insertSelective(SeWalletRechargeHistory record);
 
    SeWalletRechargeHistory selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(SeWalletRechargeHistory record);
 
    int updateByPrimaryKey(SeWalletRechargeHistory record);
}