2023-03-04 18:41:11 +08:00
|
|
|
|
using ThingsGateway.Core;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ThingsGateway.Web.Foundation
|
|
|
|
|
|
{
|
2023-03-29 16:22:01 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 运行日志分页DTO
|
|
|
|
|
|
/// </summary>
|
2023-03-04 18:41:11 +08:00
|
|
|
|
public class RuntimeLogPageInput : BasePageInput
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 日志源
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("日志源")]
|
|
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
|
/// <summary>
|
2023-03-08 17:18:44 +08:00
|
|
|
|
/// 日志等级
|
2023-03-04 18:41:11 +08:00
|
|
|
|
/// </summary>
|
2023-03-08 17:18:44 +08:00
|
|
|
|
[Description("日志等级")]
|
2023-03-04 18:41:11 +08:00
|
|
|
|
public string Level { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2023-03-29 16:22:01 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// RPC日志分页DTO
|
|
|
|
|
|
/// </summary>
|
2023-03-04 18:41:11 +08:00
|
|
|
|
public class RpcLogPageInput : BasePageInput
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 操作源
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("操作源")]
|
|
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 操作源
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("操作对象")]
|
|
|
|
|
|
public string Object { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 方法
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("方法")]
|
|
|
|
|
|
public string Method { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|