42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ARW.Model;
|
|
using ARW.Model.Dto.Business.Custom.CustomerLoginLogs;
|
|
using ARW.Model.Models.Business.Custom.CustomerLoginLogs;
|
|
using ARW.Model.Vo.Business.Custom.CustomerLoginLogs;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.Custom.CustomerLoginLogs
|
|
{
|
|
/// <summary>
|
|
/// 客户登录日志接口类
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-11-21
|
|
/// </summary>
|
|
public interface ICustomerLoginLogService : IBaseService<CustomerLoginLog>
|
|
{
|
|
/// <summary>
|
|
/// 获取客户登录日志分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<CustomerLoginLogVo>> GetCustomerLoginLogList(CustomerLoginLogQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改客户登录日志
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdateCustomerLoginLog(CustomerLoginLog parm);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|