using Magicodes.ExporterAndImporter.Core; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { [SugarTable(nameof(Dt_PalletStockInfo_hty), "库存信息")] public class Dt_PalletStockInfo_hty : Dt_PalletStockInfo { /// /// 完成时间 /// [ImporterHeader(Name = "完成时间")] [ExporterHeader(DisplayName = "完成时间")] [SugarColumn(IsNullable = true, ColumnDescription = "完成时间")] public DateTime? FinishTime { get; set; } /// /// 操作类型 /// [ImporterHeader(Name = "操作类型")] [ExporterHeader(DisplayName = "操作类型")] [SugarColumn(IsNullable = true, ColumnDescription = "操作类型")] public int OperateType { get; set; } } }