using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core.DB.Models; namespace WIDESEAWCS_Model.Models { [SugarTable(nameof(DtCZTaskDetails), "任务信息")] public class DtCZTaskDetails : BaseEntity { /// /// 主键ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 任务名称 /// [SugarColumn(Length = 50, IsNullable = true)] public string TaskName { get; set; } /// /// 任务类型 /// [SugarColumn(Length = 50, IsNullable = true)] public string TaskType { get; set; } /// /// 任务状态 /// [SugarColumn(Length = 50, IsNullable = true)] public string TaskStatus { get; set; } /// /// 任务描述 /// [SugarColumn(Length = 255, IsNullable = true)] public string TaskDescription { get; set; } /// /// 任务终点地址 /// [SugarColumn(Length = 50, IsNullable = true)] public string TaskEndAddress { get; set; } /// /// 物料类型 /// [SugarColumn(Length = 50, IsNullable = true)] public string MaterialType { get; set; } /// /// 物料条码 /// [SugarColumn(Length = 100, IsNullable = true)] public string MaterialBarCode { get; set; } } }