wzy
2021-01-13 95a75fc2342ed20f2b31eeb30a6171222c2faedf
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
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.matrix.system.hive.dao;
 
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
import com.matrix.core.pojo.PaginationVO;
import com.matrix.system.hive.bean.SysSourceFlow;
 
/**
 * @description 积分流水
 * @author 
 * @date 2020-05-05 23:09
 */
public interface SysSourceFlowDao{
 
    public int insert(@Param("item") SysSourceFlow sysSourceFlow);
       
       public int batchInsert(@Param("list") List<SysSourceFlow> sysSourceFlowList);
       
    public int updateByMap(Map<String, Object> modifyMap);
    
    public int updateByModel(@Param("record")SysSourceFlow sysSourceFlow);
    
    public int deleteByIds(@Param("list") List<String> list);
    
    public int deleteById(Integer id);
 
    public int deleteByModel(@Param("record") SysSourceFlow sysSourceFlow);
    
    public List<SysSourceFlow> selectInPage(@Param("record") SysSourceFlow sysSourceFlow, @Param("pageVo") PaginationVO pageVo);
 
    public List<SysSourceFlow> selectByModel(@Param("record") SysSourceFlow sysSourceFlow);
    
    public int selectTotalRecord(@Param("record") SysSourceFlow sysSourceFlow);
    
    public SysSourceFlow  selectById(Integer id);
    
    public SysSourceFlow  selectForUpdate(Integer id);
    
}