Helius
2021-03-12 62bf99d419e470f5556f21682d0d8ee8b9e20412
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
package com.matrix.system.hive.dao;
 
import com.matrix.core.pojo.PaginationVO;
import com.matrix.system.hive.bean.SysSmsSendRecord;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @author wzy
 * @description 短信发送记录
 * @date 2020-03-15 18:42
 */
public interface SysSmsSendRecordDao {
 
    public int insert(@Param("item") SysSmsSendRecord sysSmsSendRecord);
 
 
    public int batchInsert(@Param("list") List<SysSmsSendRecord> list);
 
 
    public int updateByModel(@Param("record") SysSmsSendRecord sysSmsSendRecord);
 
    public int deleteByIds(@Param("list") List<String> list);
 
    public int deleteById(Long id);
 
    public int deleteByModel(@Param("record") SysSmsSendRecord sysSmsSendRecord);
 
    public List<SysSmsSendRecord> selectInPage(@Param("record") SysSmsSendRecord sysSmsSendRecord, @Param("pageVo") PaginationVO pageVo);
 
    public List<SysSmsSendRecord> selectByModel(@Param("record") SysSmsSendRecord sysSmsSendRecord);
 
    public int selectTotalRecord(@Param("record") SysSmsSendRecord sysSmsSendRecord);
 
    public SysSmsSendRecord selectById(Long id);
 
}