38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Cache
|
|
{
|
|
public interface icache_ord_memo_bl
|
|
{
|
|
List<WX.CRM.Model.QueryMap.ORD_MemoQuery> GetList(ref Pager pager,
|
|
string customerId,
|
|
decimal TypeID,
|
|
string memoId,
|
|
string stime,
|
|
string etime,
|
|
decimal MemoType,
|
|
decimal MemoSubtype,
|
|
string saleDeptId,
|
|
string groupId,
|
|
string userId);
|
|
List<string> GetMemoResId(
|
|
string customerId
|
|
, decimal TypeID
|
|
, string memoId
|
|
, string stime
|
|
, string etime
|
|
, decimal MemoType
|
|
, decimal MemoSubtype
|
|
, string saleDeptId
|
|
, string groupId
|
|
, string userId);
|
|
WX.CRM.Model.Entity.CACHE_ORD_MEMO GetInfo(decimal memoid);
|
|
List<decimal> GetList_Memoid(string resid);
|
|
|
|
List<CACHE_ORD_MEMO> GetLastMemoByResIds(IEnumerable<string> resIds);
|
|
|
|
}
|
|
}
|