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);
|
}
|