using System; using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; using WX.CRM.Model.MAP; namespace WX.CRM.IBLL.Ord { public interface IORD_PURPOSEMEMO_Q { List GetList(ref Pager pager, string memoId, string stime, string etime, string resid, decimal MemoType, decimal MemoSubtype, string content, QueryUserComboDto userComboDto); List GetMemoResId(string memoId, string stime, string etime, string resid, decimal MemoType, decimal MemoSubtype, QueryUserComboDto userComboDto); List GetListByResId(ref Pager pager, string ResId); List GetNoCallTimeByMemoId(decimal[] MemoIds); List GetHgPuposeMemo(decimal Memoid, decimal memosubtypeId); ORD_PURPOSEMEMO GetModelByResId(int memosubtypeid, string ResId); ORD_PURPOSEMEMO GetModelByMemoTypeAndResId(int memoTypeId, string ResId); ORD_PURPOSEMEMO GetModelForSuccess(int memosubtypeid, string ResId, DateTime applytime, DateTime opentime); ORD_PURPOSEMEMO GetModelForSuccessbyUnInAmt(int memosubtypeid, string ResId, DateTime Opentime); } }