18 lines
536 B
C#
18 lines
536 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.QueryMap;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_MyIllegalRecord
|
|
{
|
|
DataSet GetMyIllegalRecord(ref Pager pager, decimal p_userid, DateTime? p_stime, DateTime? p_etime, decimal p_type);
|
|
|
|
DataSet IllegalRecordCount(DateTime? p_stime, DateTime? p_etime);
|
|
List<WxIllegalreCodeNoticeModel> GetNotice(decimal type);
|
|
bool UpadteNoticeLookStatus(decimal userid, decimal type);
|
|
}
|
|
}
|