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
24
25
26
27
package com.dy.pipIrrGlobal.daoSe;
 
import com.dy.pipIrrGlobal.pojoSe.SeRecharge;
import com.dy.pipIrrGlobal.pojoSe.VoRecharge;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
@Mapper
public interface SeRechargeMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(SeRecharge record);
 
    int insertSelective(SeRecharge record);
 
    //SeRecharge selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(SeRecharge record);
 
    int updateByPrimaryKey(SeRecharge record);
 
    Long getRecordCount(Map<?, ?> params);
 
    List<VoRecharge> getRecharges(Map<?, ?> params);
}