| | |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.DB.Models; |
| | | using WIDESEAWCS_Core.DB.Models; |
| | | |
| | | namespace WIDESEAWCS_Model.Models |
| | | { |
| | | [SugarTable(nameof(Dt_Task_Hty), "任务历史信息")] |
| | | public class Dt_Task_Hty : BaseEntity |
| | | public class Dt_Task_Hty : BaseEntity, IBaseHistoryEntity |
| | | { |
| | | /// <summary> |
| | | /// 主键 |
| | |
| | | [ExporterHeader(DisplayName = "取放货标识")] |
| | | [SugarColumn(IsNullable = true, Length = 255, ColumnDescription = "取放货标识")] |
| | | public string AGVSign { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备 注: 移入历史时间 |
| | | /// 默认值: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "InsertTime", ColumnDescription = "移入历史时间")] |
| | | public DateTime InsertTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备 注: 操作类型 |
| | | /// 默认值: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "OperateType", ColumnDescription = "操作类型")] |
| | | public string OperateType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备 注: 源单ID |
| | | /// 默认值: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "SourceId", ColumnDescription = "源单ID")] |
| | | public int SourceId { get; set; } |
| | | } |
| | | } |