using System.Collections.Generic;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Sms
{
public interface ISMS_ACCOUNT_Q
{
///
/// 查询全部数据
///
///
List GetList();
///
/// 根据编码查询单个数据
///
///
///
SMS_ACCOUNT GetModel_SmsAccount(string code);
///
/// 根据子类ID找对应帐号
///
///
///
List GetList(decimal msgSubTypeId);
}
}