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