2025-04-23 16:17:29 +08:00

30 lines
712 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Common.Models
{
/// <summary>
/// 待下发的指令生产任务数据
/// </summary>
public class TasksToBeIssueModel
{
/// <summary>
/// 上次下发任务的时间
/// </summary>
public DateTime? LastTaskTime { get; set; }
/// <summary>
/// 下个任务时间
/// </summary>
public DateTime NextTaskTime { get; set; }
/// <summary>
/// 采集时间间隔,1分钟5分钟15分钟
/// </summary>
public int TimeDensity { get; set; }
}
}