using YBEE.EQM.Core; namespace YBEE.EQM.Application; /// /// 异常日志参数 /// public class SysLogExPageInput : PageInputBase { /// /// 名称 /// public string Name { get; set; } /// /// 类名 /// public string ClassName { get; set; } /// /// 方法名 /// public string MethodName { get; set; } /// /// 异常信息 /// [MaxLength(2000)] public string ExceptionMsg { get; set; } }