zhs
2025-04-17 9814549e8064737867a155a92a53b8dd7982c80b
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
62
63
package com.smartor.mapper;
 
import java.util.List;
 
import com.smartor.domain.BaseSmsaccount;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 短信账号Mapper接口
 *
 * @author smartor
 * @date 2023-03-06
 */
@Mapper
public interface BaseSmsaccountMapper {
    /**
     * 查询短信账号
     *
     * @param smsacountid 短信账号主键
     * @return 短信账号
     */
    public BaseSmsaccount selectBaseSmsaccountBySmsacountid(Long smsacountid);
 
    /**
     * 查询短信账号列表
     *
     * @param baseSmsaccount 短信账号
     * @return 短信账号集合
     */
    public List<BaseSmsaccount> selectBaseSmsaccountList(BaseSmsaccount baseSmsaccount);
 
    /**
     * 新增短信账号
     *
     * @param baseSmsaccount 短信账号
     * @return 结果
     */
    public int insertBaseSmsaccount(BaseSmsaccount baseSmsaccount);
 
    /**
     * 修改短信账号
     *
     * @param baseSmsaccount 短信账号
     * @return 结果
     */
    public int updateBaseSmsaccount(BaseSmsaccount baseSmsaccount);
 
    /**
     * 删除短信账号
     *
     * @param smsacountid 短信账号主键
     * @return 结果
     */
    public int deleteBaseSmsaccountBySmsacountid(Long smsacountid);
 
    /**
     * 批量删除短信账号
     *
     * @param smsacountids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteBaseSmsaccountBySmsacountids(Long[] smsacountids);
}