irc-netcore-api/IRaCIS.Core.Application/Service/Management/DTO/UserLogViewModel.cs

55 lines
1.4 KiB
C#

//--------------------------------------------------------------------
// 此代码由T4模板自动生成 byzhouhang 20210918
// 生成时间 2023-07-04 16:10:46
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
using System;
using IRaCIS.Core.Domain.Share;
using System.Collections.Generic;
namespace IRaCIS.Core.Application.ViewModel
{
/// <summary> UserLogView 列表视图模型 </summary>
public class UserLogView
{
public Guid? Id { get; set; }
public string IP { get; set; }
public string LoginFaildName { get; set; }
public int OptType { get; set; }
public string LoginUserName { get; set; }
public UserTypeEnum LoginUserTypeEnum { get; set; }
public string OptUserName { get; set; }
public UserTypeEnum OptUserTypeEnum { get; set; }
}
///<summary>UserLogQuery 列表查询参数模型</summary>
public class UserLogQuery : PageInput
{
public Guid? TrialId { get; set; }
public UserOptType? OptType { get; set; }
public string? IP { get; set; }
public string? LoginFaildName { get; set; }
public DateTime? BeginDate { get; set; }
public DateTime? EndDate { get; set; }
}
}