| | |
| | | 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 |
| | | */ |
| | | public interface BaseSmsaccountMapper |
| | | { |
| | | @Mapper |
| | | public interface BaseSmsaccountMapper { |
| | | /** |
| | | * 查询短信账号 |
| | | * |
| | | * |
| | | * @param smsacountid 短信账号主键 |
| | | * @return 短信账号 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询短信账号列表 |
| | | * |
| | | * |
| | | * @param baseSmsaccount 短信账号 |
| | | * @return 短信账号集合 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 新增短信账号 |
| | | * |
| | | * |
| | | * @param baseSmsaccount 短信账号 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 修改短信账号 |
| | | * |
| | | * |
| | | * @param baseSmsaccount 短信账号 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 删除短信账号 |
| | | * |
| | | * |
| | | * @param smsacountid 短信账号主键 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除短信账号 |
| | | * |
| | | * |
| | | * @param smsacountids 需要删除的数据主键集合 |
| | | * @return 结果 |
| | | */ |