package com.smartor.service;
|
|
import java.util.List;
|
import com.smartor.domain.BaseSmsaccount;
|
|
/**
|
* 短信账号Service接口
|
*
|
* @author smartor
|
* @date 2023-03-06
|
*/
|
public interface IBaseSmsaccountService
|
{
|
/**
|
* 查询短信账号
|
*
|
* @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 smsacountids 需要删除的短信账号主键集合
|
* @return 结果
|
*/
|
public int deleteBaseSmsaccountBySmsacountids(Long[] smsacountids);
|
|
/**
|
* 删除短信账号信息
|
*
|
* @param smsacountid 短信账号主键
|
* @return 结果
|
*/
|
public int deleteBaseSmsaccountBySmsacountid(Long smsacountid);
|
}
|