schangxiang@126.com
2024-04-23 f47411fb53aeee0c7bd514cbc841f9030349f448
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Admin.NET.Core
{
    /// <summary>
    /// 打包表
    /// </summary>
    [Table("les_packwarehouse")]
    [Comment("打包表")]
    public class LesPackWarehouse : DEntityBase
    {
        /// <summary>
        /// 标签码
        /// </summary>
        [Comment("标签码")]
        [MaxLength(50)]
        public string PackCode { get; set; }
 
        /// <summary>
        /// 物料码
        /// </summary>
        [Comment("物料码")]
        [MaxLength(50)]
        public string MaterialNo { get; set; }
 
        /// <summary>
        /// 长    
        /// </summary>
        [Comment("长")]
        [Required]
        public int Long { get; set; }
 
        /// <summary>
        /// 宽    
        /// </summary>
        [Comment("宽")]
        [Required]
        public int Wide { get; set; }
 
        /// <summary>
        /// 高    
        /// </summary>
        [Comment("高")]
        [Required]
        public int High { get; set; }
 
        /// <summary>
        /// 出库口
        /// </summary>
        [Comment("出库口")]
        [MaxLength(50)]
        public string OutputEntrance { get; set; }
        
 
        /// <summary>
        /// 打包状态
        /// </summary>
        [Comment("打包状态")]
        public LesPackState LesPackState { get; set; }
 
        /// <summary>
        /// 单据号
        /// </summary>
        [Comment("单据号")]
        public string OrderNo { get; set; }
    }
}