wxw
2025-05-12 c7c2f7aa20427204944ba80a2704232b2f281582
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
35
36
using System;
using System.Linq;
using System.Text;
using SqlSugar;
 
namespace WMS.Entity.LogEntity
{
    ///<summary>
    ///托盘跟踪日志表
    ///</summary>
    [SugarTable("LogPalletTrack")]
    public class LogPalletTrack:BaseEntity
    {
        /// <summary>
        /// 托盘号
        /// Default:
        /// Nullable:False
        /// </summary>           
        public string PalletNo {get;set;}
 
        /// <summary>
        /// 单据号 入库单号  出库单号 盘点单号 空托盘存:'' 
        /// Default:
        /// Nullable:False
        /// </summary>           
        public string OrderNo {get;set;}
 
        /// <summary>
        /// 内容 托盘使用内容 例: 组盘 入库上架 出库取货 出库分拣  盘点回库  盘点出库
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string Msg {get;set;}
         
    }
}