using System;
using System.Collections.Generic;
using System.Text;
using ARW.Model.System;
namespace ARW.Model.System.Dto
{
public class SysOperLogDto : SysBase
{
///
/// 页码
///
public int pageNum { get; set; }
public int PageSize { get; set; }
///
/// 操作人员
///
public string operName { get; set; }
///
/// 业务类型 0=其它,1=新增,2=修改,3=删除,4=授权,5=导出,6=导入,7=强退,8=生成代码,9=清空数据
///
public int BusinessType { get; set; } = -1;
///
/// 状态
///
public int Status { get; set; } = -1;
///
/// 操作模块
///
public string Title { get; set; }
}
}