刘磊
2025-06-09 dabbcafc629ef87d11ba55ef8cc1cdc776c047d8
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
31
32
33
34
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
    {
 
        /// <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; }
 
        
    }
}