18 lines
945 B
C#
18 lines
945 B
C#
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_RECORDSHARED_Q
|
|
{
|
|
CSVR_RECORDSHARED GetModel_RecordShared(decimal recordId);
|
|
List<CSVR_RECORDSHARED> GetList_RecordShared(ref Pager pg, decimal recordTypeID, string resid, decimal recordid, decimal recordShardtype, string stime, string etime, decimal serviceEid, decimal shareEid);
|
|
|
|
List<CSVR_RECORDSHARED> GetList_RecordShared(ref Pager pg, decimal recordTypeID, string resid, decimal recordid, decimal recordShardtype, string stime, string etime, decimal shareEid, decimal groupId, decimal userId);
|
|
|
|
List<CSVR_RECORDSHARED_Extend> GetList_WgRecordShared(ref Pager pg, string resid, decimal recordid, decimal recordShardtype, string stime, string etime, decimal shareEid, string bigType,string subType,QueryUserComboDto usercomboDto);
|
|
}
|
|
}
|