Files
Yi.Admin/Yi.Framework.Net6/src/module/Yi.Framework.OperLog/OperationLogGetListInputVo.cs

16 lines
358 B
C#
Raw Normal View History

2023-02-21 19:37:48 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Ddd.Dtos;
2023-02-22 16:49:24 +08:00
namespace Yi.Framework.OperLog
2023-02-21 19:37:48 +08:00
{
public class OperationLogGetListInputVo : PagedAllResultRequestDto
{
public OperEnum? OperType { get; set; }
2023-02-21 19:37:48 +08:00
public string? OperUser { get; set; }
}
}