LogApiParam.cs 436 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace YiSha.Model.Param.SystemManage
  4. {
  5. /// <summary>
  6. /// 创 建:admin
  7. /// 日 期:2021-02-24 15:52
  8. /// 描 述:系统日志实体查询类
  9. /// </summary>
  10. public class LogApiListParam : DateTimeParam
  11. {
  12. public string UserName { get; set; }
  13. public string ExecuteUrl { get; set; }
  14. public int? LogStatus { get; set; }
  15. }
  16. }