liusheng
2025-04-02 ae086bc3ad6f785e6368b84e57a7e199c675779b
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.smartor.service;
 
import java.util.List;
import com.smartor.domain.SmsRecords;
 
/**
 * 短信记录Service接口
 * 
 * @author smartor
 * @date 2023-03-06
 */
public interface ISmsRecordsService 
{
    /**
     * 查询短信记录
     * 
     * @param recordid 短信记录主键
     * @return 短信记录
     */
    public SmsRecords selectSmsRecordsByRecordid(Long recordid);
 
    /**
     * 查询短信记录列表
     * 
     * @param smsRecords 短信记录
     * @return 短信记录集合
     */
    public List<SmsRecords> selectSmsRecordsList(SmsRecords smsRecords);
 
    /**
     * 新增短信记录
     * 
     * @param smsRecords 短信记录
     * @return 结果
     */
    public int insertSmsRecords(SmsRecords smsRecords);
 
    /**
     * 修改短信记录
     * 
     * @param smsRecords 短信记录
     * @return 结果
     */
    public int updateSmsRecords(SmsRecords smsRecords);
 
    /**
     * 批量删除短信记录
     * 
     * @param recordids 需要删除的短信记录主键集合
     * @return 结果
     */
    public int deleteSmsRecordsByRecordids(Long[] recordids);
 
    /**
     * 删除短信记录信息
     * 
     * @param recordid 短信记录主键
     * @return 结果
     */
    public int deleteSmsRecordsByRecordid(Long recordid);
}