ComplianceServer/oldcode/IBLL/Sms/ISMS_MSGTEMPLATE_Q.cs

15 lines
477 B
C#

using System.Collections.Generic;
using WX.CRM.Common;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Sms
{
public interface ISMS_MSGTEMPLATE_Q
{
SMS_MSGTEMPLATE GetModel(decimal id);
List<SMS_MSGTEMPLATE> GetList(ref Pager pager, decimal subtypeId, decimal isShow, decimal isCheck, string param, string title, string stime, string etime);
List<SMS_MSGTEMPLATE> GetList(decimal subTypeId);
List<SMS_MSGTEMPLATE> GetList();
}
}