25 lines
887 B
C#
25 lines
887 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_extend> GetToDoItemsByParam(ref Pager pager, string resid, string memo, DateTime? ctime, DateTime? Etime, decimal status, QueryUserComboDto usercomboDto, string resourcetag, string activity, int? deptlineid);
|
|
|
|
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);
|
|
}
|
|
} |