TG.WXCRM.V4/IBLL/Ord/IORD_PURPOSEMEMO_Q.cs

34 lines
1.4 KiB
C#

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<WX.CRM.Model.QueryMap.ORD_MemoQuery> GetList(ref Pager pager,
string memoId,
string stime,
string etime,
string resid,
decimal MemoType,
decimal MemoSubtype,
string content,
QueryUserComboDto userComboDto);
List<WX.CRM.Model.QueryMap.ord_memoExport> GetMemoResId(string memoId, string stime, string etime, string resid, decimal MemoType, decimal MemoSubtype, QueryUserComboDto userComboDto);
List<WX.CRM.Model.QueryMap.ORD_MemoQuery> GetListByResId(ref Pager pager, string ResId);
List<WX.CRM.Model.Entity.ORD_PURPOSEMEMO> GetNoCallTimeByMemoId(decimal[] MemoIds);
List<WX.CRM.Model.Entity.ORD_PURPOSEMEMO> 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);
}
}