48 lines
962 B
C#
48 lines
962 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.Custom.CustomerLoginLogs;
|
|
|
|
namespace ARW.Model.Dto.Business.Custom.CustomerLoginLogs
|
|
{
|
|
/// <summary>
|
|
/// 客户登录日志输入对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-11-21
|
|
/// </summary>
|
|
public class CustomerLoginLogDto
|
|
{
|
|
|
|
public int CustomerLoginLogId { get; set; }
|
|
|
|
public long CustomerLoginLogGuid { get; set; }
|
|
|
|
[Required(ErrorMessage = "客户guid不能为空")]
|
|
public long CustomerGuid { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 客户登录日志查询对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-11-21
|
|
/// </summary>
|
|
public class CustomerLoginLogQueryDto : PagerInfo
|
|
{
|
|
[Required(ErrorMessage = "客户guid不能为空")]
|
|
public long CustomerGuid { get; set; }
|
|
public string ids { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|