using System; using System.Collections.Generic; using System.Text; namespace SlnMesnac.Model.domain { public class VisionTask { /// /// 自增编号 /// [SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int ID { get; set; } /// /// 视觉任务编号 /// public string? VisionTaskID { get; set; } /// /// 总数量 /// public int TotalCount { get; set; } /// /// 已抓取数量 /// public int LoadedCount { get; set; } /// /// 刷新时间 /// public DateTime? RefreshTime { get; set; } /// /// 所属总任务编号 /// public string? AirportTaskID { get; set; } } }