liusheng
2023-07-07 429615c304035bf573297d69ce6a17e086e4f6fa
smartor/src/main/java/com/smartor/mapper/BaseSmsaccountMapper.java
@@ -1,19 +1,21 @@
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 短信账号
     */
@@ -21,7 +23,7 @@
    /**
     * 查询短信账号列表
     *
     *
     * @param baseSmsaccount 短信账号
     * @return 短信账号集合
     */
@@ -29,7 +31,7 @@
    /**
     * 新增短信账号
     *
     *
     * @param baseSmsaccount 短信账号
     * @return 结果
     */
@@ -37,7 +39,7 @@
    /**
     * 修改短信账号
     *
     *
     * @param baseSmsaccount 短信账号
     * @return 结果
     */
@@ -45,7 +47,7 @@
    /**
     * 删除短信账号
     *
     *
     * @param smsacountid 短信账号主键
     * @return 结果
     */
@@ -53,7 +55,7 @@
    /**
     * 批量删除短信账号
     *
     *
     * @param smsacountids 需要删除的数据主键集合
     * @return 结果
     */