📄 iuserpointlog.cs
字号:
namespace PowerEasy.IDal.UserManage
{
using PowerEasy.Model.UserManage;
using System;
using System.Collections;
using System.Collections.Generic;
public interface IUserPointLog
{
bool Add(UserPointLogInfo userPointLogInfo);
bool Delete(DateTime tempDate);
bool Delete(string userName);
bool Exists(string userName);
int GetCountNumber();
IList<UserPointLogInfo> GetPointList(int startRowIndexId, int maxNumberRows, int scopesType, int field, string keyword);
UserPointLogInfo GetPointLogById(int logId);
UserPointLogInfo GetPointLogByIdAndUserName(int logId, string userName);
ArrayList GetTotalInComeAndPayOutAll();
ArrayList GetTotalInComeAndPayOutAll(string userName);
int GetValidPointLogId(string userName, int moduleType, int infoId, int chargeType, int pitchTime, int readTimes);
int PointSum(int sumType);
int PointSum(int sumType, string userName);
bool UpdateTimes(int id, string ip);
void UpdateTimes(string userTrueIP, int logId);
int ViewInfosOneDay(string userName);
int ViewTotalInfos(string userName);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -