qinchulong
3 天以前 dc467182bfaeeb0dfd9bc2d6c4ec8fe64b179446
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
{
    /// <summary>
    /// 完成时间
    /// </summary>
    [ImporterHeader(Name = "完成时间")]
    [ExporterHeader(DisplayName = "完成时间")]
    [SugarColumn(IsNullable = true, ColumnDescription = "完成时间")]
    public DateTime? FinishTime { get; set; }
 
    /// <summary>
    /// 操作类型
    /// </summary>
    [ImporterHeader(Name = "操作类型")]
    [ExporterHeader(DisplayName = "操作类型")]
    [SugarColumn(IsNullable = true, ColumnDescription = "操作类型")]
    public int OperateType { get; set; }
}