📄 iuservalidlog.cs
字号:
namespace PowerEasy.IDal.UserManage
{
using PowerEasy.Model.UserManage;
using System;
using System.Collections.Generic;
public interface IUserValidLog
{
bool Add(UserValidLogInfo userValidLogInfo);
bool Delete(DateTime tempDate);
bool Delete(string userName);
bool Exists(string userName);
int GetCountNumber();
IList<UserValidLogInfo> GetValidList(int startRowIndexId, int maxNumberRows, int scopesType, int field, string keyword);
UserValidLogInfo GetValidLogById(int logId);
UserValidLogInfo GetValidLogByIdAndUserName(int logId, string userName);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -