bklLiudl
2024-05-25 484e5129e4c9a671c5660a556a24bd306f1fdd9b
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
37
38
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Model.ModelDto.SysDto
{
    public class PalletsDto
    {
        public int Id { get; set; }
        /// <summary>
        /// 托盘号 号码使用完成后从起始重新循环生成(使用中的跳过)
        /// </summary>           
        public string PalletNo { get; set; }
 
        /// <summary>
        /// 类行 0:托盘   1:中转箱(托盘上存放的容器/二级托盘)   功能控制是否开启中转箱
        /// </summary>           
        public string Type { get; set; }
 
        /// <summary>
        /// 状态 0:未使用 1:使用中
        /// </summary>           
        public string Status { get; set; }
 
        /// <summary>
        /// 上次使用时间
        /// </summary>           
        public DateTime? LastUse { get; set; }
        /// <summary>
        /// 添加人
        /// </summary>
        public string CreateUserName { get; set; }
        /// <summary>
        /// 添加时间
        /// </summary>
        public DateTime CreateTime { get; set; }
    }
}