ComplianceServer/oldcode/IBLL/Csvr/ICSVR_TODOITEM_Q.cs

20 lines
841 B
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.Csvr
{
public interface ICSVR_TODOITEM_Q
{
List<CSVR_TODOITEM> GetAllToDoItems();
List<CSVR_TODOITEM> GetToDoItemsByParam(ref Pager pager, string resid, string memo, DateTime? ctime, DateTime? Etime, decimal status, QueryUserComboDto usercomboDto, string resourcetag);
List<CSVR_TODOITEM_MAP> GetToDoItemsByParamExport(ref Pager pager, string resid, DateTime? ctime, DateTime? Etime, decimal status, QueryUserComboDto usercomboDto, string resourcetag);
List<CSVR_TODOITEM> GetToDoItemsByDateNow();
List<CSVR_TODOITEM> GetToDoItemSoftLogin();
List<CSVR_TODOITEM> GetToDoItemRFM();
CSVR_TODOITEM GetToDoItemById(decimal id);
}
}