#region << 版 本 注 释 >>
|
/*----------------------------------------------------------------
|
* 命名空间:WIDESEAWCS_Model.Models.TaskInfo
|
* 创建者:胡童庆
|
* 创建时间:2024/8/2 16:13:36
|
* 版本:V1.0.0
|
* 描述:
|
*
|
* ----------------------------------------------------------------
|
* 修改人:
|
* 修改时间:
|
* 版本:V1.0.1
|
* 修改说明:
|
*
|
*----------------------------------------------------------------*/
|
#endregion << 版 本 注 释 >>
|
|
using Magicodes.ExporterAndImporter.Core;
|
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(Dt_Task_hty), "任务信息")]
|
public class Dt_Task_hty : BaseEntity, IBaseHistoryEntity
|
{
|
[SugarColumn(IsNullable = false, DefaultValue = "0", ColumnDescription = "原表主键")]
|
public int SourceId { get; set; }
|
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "操作类型")]
|
public string OperateType { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "移入历史时间")]
|
public DateTime InsertTime { get; set; }
|
}
|
}
|