1 2 3 4 5 6 7 8 9 10 11 12
using Yi.Framework.Ddd; using Yi.Framework.Ddd.Application.Contracts; namespace Yi.Framework.Rbac.Application.Contracts.Dtos.LoginLog { public class LoginLogGetListInputVo : PagedAllResultRequestDto { public string? LoginUser { get; set; } public string? LoginIp { get; set; } } }