操作日志新增请求参数查询

This commit is contained in:
不做码农
2022-12-14 18:45:30 +08:00
parent 1d9e628a5c
commit 3f9ae2213e
4 changed files with 15 additions and 15 deletions

View File

@@ -1,21 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
using ZR.Model.System;
namespace ZR.Model.System.Dto
namespace ZR.Model.System.Dto
{
public class SysOperLogDto : SysBase
{
/// <summary>
/// 页码
/// </summary>
public int pageNum { get; set; }
public int PageNum { get; set; }
public int PageSize { get; set; }
/// <summary>
/// 操作人员
/// </summary>
public string operName { get; set; }
public string OperName { get; set; }
/// <summary>
/// 业务类型 0=其它,1=新增,2=修改,3=删除,4=授权,5=导出,6=导入,7=强退,8=生成代码,9=清空数据
/// </summary>
@@ -28,5 +23,9 @@ namespace ZR.Model.System.Dto
/// 操作模块
/// </summary>
public string Title { get; set; }
/// <summary>
/// 请求参数
/// </summary>
public string OperParam { get; set; }
}
}

View File

@@ -43,8 +43,8 @@ namespace ZR.Model.System
public string OperName { get; set; }
/** 部门名称 */
[DisplayName("部门名称")]
public string DeptName { get; set; }
//[DisplayName("部门名称")]
//public string DeptName { get; set; }
/** 请求url */
[DisplayName("请求地址")]