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
|
{
|
/// <summary>
|
/// 主键ID
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
public int Id { get; set; }
|
|
/// <summary>
|
/// 任务名称
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true)]
|
public string TaskName { get; set; }
|
|
/// <summary>
|
/// 任务类型
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true)]
|
public string TaskType { get; set; }
|
|
/// <summary>
|
/// 任务状态
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true)]
|
public string TaskStatus { get; set; }
|
|
/// <summary>
|
/// 任务描述
|
/// </summary>
|
[SugarColumn(Length = 255, IsNullable = true)]
|
public string TaskDescription { get; set; }
|
|
/// <summary>
|
/// 任务终点地址
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true)]
|
public string TaskEndAddress { get; set; }
|
|
/// <summary>
|
/// 物料类型
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true)]
|
public string MaterialType { get; set; }
|
|
/// <summary>
|
/// 物料条码
|
/// </summary>
|
[SugarColumn(Length = 100, IsNullable = true)]
|
public string MaterialBarCode { get; set; }
|
}
|
}
|