payne
2024-04-25 3fa9d2b0420f4d39849f72e6a04b5cb40823fa0d
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
75
76
77
78
79
80
81
82
83
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
/*
 * @author : 刘文奇
 * @date : 2024/4/23下午4:29:28
 * @desc : 容器关系基础表
 */
namespace Admin.NET.Core
{
    /// <summary>
    /// 容器关系基础表
    /// </summary>
    [Table("wms_container_packaging")]
    [Comment("容器关系基础表")]
    public class WmsContainerPackaging : DEntityBase
    {
 
 
        /// <summary>
        /// 容器类型ID
        /// </summary>
        [Comment("容器类型ID")]
        [Required]
 
        public long ContainerTypeId { get; set; }
 
 
        /// <summary>
        /// 容器类型名称
        /// </summary>
        [Comment("容器类型名称")]
        [Required]
        [MaxLength(255)]
        public string ContainerTypeName { get; set; }
 
 
        /// <summary>
        /// 物料类型ID
        /// </summary>
        [Comment("物料类型ID")]
        [Required]
 
        public long MaterialTypeId { get; set; }
 
 
        /// <summary>
        /// 物料类型编号
        /// </summary>
        [Comment("物料类型编号")]
        [Required]
        [MaxLength(255)]
        public string MaterialTypeCode { get; set; }
 
 
        /// <summary>
        /// 物料类型名称
        /// </summary>
        [Comment("物料类型名称")]
        [Required]
        [MaxLength(255)]
        public string MaterialTypeName { get; set; }
 
 
        /// <summary>
        /// 物料容器容量
        /// </summary>
        [Comment("物料容器容量")]
 
        [Column("BoxQty", TypeName = "decimal(10,3)")]
        public decimal? BoxQty { get; set; }
 
 
 
 
 
 
 
 
 
    }
}