| | |
| | | |
| | | namespace WIDESEAWCS_Model.Models |
| | | { |
| | | [SugarTable(nameof(Dt_TaskExecuteDetail), "任务执行明细表")] |
| | | [SugarTable(nameof(Dt_TaskExecuteDetail), "任务执行明细")] |
| | | public class Dt_TaskExecuteDetail : BaseEntity |
| | | { |
| | | /// <summary> |
| | |
| | | public int TaskState { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 当前位置 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "当前位置")] |
| | | public string CurrentAddress { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 下一地址 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "下一地址")] |
| | | public string NextAddress { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否人工操作 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "是否人工操作")] |