using HybirdFrameworkCore.Entity; namespace Entity.Api.Req; public class QueryAlarmReq : QueryPageModel { public int TypeCode { get; set; } = -1; public string? EquipCode { get; set; } public string? ErrorLevel { get; set; } public DateTime? StartTime { get; set; } public DateTime? ProcessTime { get; set; } }