using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DW5S.Entity
{
///
/// 执行中的任务信息
///
public class TaskRunnningInfo : BaseEntity
{
///
/// 任务编号
///
public int TaskID { get; set; }
///
/// 上行频点Hz
///
public long FreqUp { get; set; }
///
/// 最近处理完成的文件的采集时间时刻
///
public DateTime LastDoneAdFileTime { get; set; }
}
}