29 lines
728 B
C#
29 lines
728 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Sms
|
|
{
|
|
public interface ISMS_ACCOUNT_Q
|
|
{
|
|
/// <summary>
|
|
/// 查询全部数据
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<SMS_ACCOUNT> GetList();
|
|
|
|
/// <summary>
|
|
/// 根据编码查询单个数据
|
|
/// </summary>
|
|
/// <param name="code"></param>
|
|
/// <returns></returns>
|
|
SMS_ACCOUNT GetModel_SmsAccount(string code);
|
|
|
|
/// <summary>
|
|
/// 根据子类ID找对应帐号
|
|
/// </summary>
|
|
/// <param name="msgSubTypeId"></param>
|
|
/// <returns></returns>
|
|
List<SMS_ACCOUNT> GetList(decimal msgSubTypeId);
|
|
}
|
|
}
|