| | |
| | | using SqlSugar; |
| | | using WIDESEA_Core.DB.Models; |
| | | |
| | | namespace WIDESEA_Model.Models; |
| | | |
| | |
| | | /// 任务表 |
| | | ///</summary> |
| | | [SugarTable("Dt_Task_Hty", "任务历史表")] |
| | | public class Dt_Task_Hty : Dt_Task |
| | | public class Dt_Task_Hty : Dt_Task, IBaseHistoryEntity |
| | | { |
| | | /// <summary> |
| | | /// 备 注: 完成时间 |
| | | /// 备 注: 移入历史时间 |
| | | /// 默认值: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "FinishTime", ColumnDescription = "完成时间")] |
| | | public DateTime FinishTime { get; set; } |
| | | [SugarColumn(ColumnName = "InsertTime", ColumnDescription = "移入历史时间")] |
| | | public DateTime InsertTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备 注: 操作类型 |
| | | /// 默认值: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "OperateType", ColumnDescription = "操作类型")] |
| | | public int OperateType { get; set; } |
| | | public string OperateType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备 注: 源单ID |