LabelAlertTimerCheckExpiredInputVo.cs
352 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.LabelAlertTimer;
/// <summary>
/// 检查告警计时器是否过期入参(至少提供一个标识)
/// </summary>
public class LabelAlertTimerCheckExpiredInputVo
{
public string? TimerId { get; set; }
public string? BatchId { get; set; }
public string? PrintTaskId { get; set; }
}