Files
SamplePreSystem-CS/SamplePre.Models/Ext/LogQuery.cs

20 lines
387 B
C#
Raw Normal View History

2026-04-30 11:34:41 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models.Ext
{
public class LogQuery
{
public string runDate { get; set; }
public string errType { get; set; }
public string errlevel { get; set; }
public string content { get; set; }
}
}