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_PalletStockInfoDetail_hty), "库存信息明细历史")]
public class Dt_PalletStockInfoDetail_hty : Dt_PalletStockInfoDetail
{
///
/// 完成时间
///
[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; }
}