| | |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using Magicodes.ExporterAndImporter.Core; |
| | | using SqlSugar; |
| | | using WIDESEAWCS_Core.DB.Models; |
| | | |
| | | namespace WIDESEAWCS_Model.Models |
| | | { |
| | | public class Dt_Task_Hty : Dt_Task, IBaseHistoryEntity |
| | | { |
| | | public int SourceId { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } |
| | | public string OperateType { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } |
| | | public DateTime InsertTime { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } |
| | | /// <summary> |
| | | /// 鍘熻〃涓婚敭 |
| | | /// </summary> |
| | | [ImporterHeader(Name = "鍘熻〃涓婚敭")] |
| | | [ExporterHeader(DisplayName = "鍘熻〃涓婚敭")] |
| | | [SugarColumn(IsNullable = false, DefaultValue = "0", ColumnDescription = "鍘熻〃涓婚敭")] |
| | | public int SourceId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 鎿嶄綔绫诲瀷 |
| | | /// </summary> |
| | | [ImporterHeader(Name = "鎿嶄綔绫诲瀷")] |
| | | [ExporterHeader(DisplayName = "鎿嶄綔绫诲瀷")] |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "鎿嶄綔绫诲瀷")] |
| | | public string OperateType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 绉诲叆鍘嗗彶鏃堕棿 |
| | | /// </summary> |
| | | [ImporterHeader(Name = "绉诲叆鍘嗗彶鏃堕棿")] |
| | | [ExporterHeader(DisplayName = "绉诲叆鍘嗗彶鏃堕棿")] |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "绉诲叆鍘嗗彶鏃堕棿")] |
| | | public DateTime InsertTime { get; set; } = DateTime.Now; |
| | | } |
| | | } |