18 lines
520 B
C#
18 lines
520 B
C#
using System;
|
|
using System.Data;
|
|
|
|
namespace WX.CRM.IBLL.TS
|
|
{
|
|
public interface IWX_TSADDPICI
|
|
{
|
|
|
|
DataTable TsaddpicihisByDay(DateTime? beginTime, DateTime? endTime, decimal groupId, decimal deptId);
|
|
|
|
DataTable GetUserTsaddpicihisByDay(DateTime? beginTime, DateTime? endTime, decimal groupId, decimal? type);
|
|
|
|
DataTable GetDismissUserList(DateTime? beginTime, DateTime? endTime, decimal groupId, decimal dept);
|
|
|
|
DataTable GetSaleUserList(decimal groupId, decimal deptid);
|
|
}
|
|
}
|