liuying
2025-09-24 16edbbe772e24eb71f6519558576d513e3cf2746
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
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 iWare.Wms.Core
{
    /// <summary>
    /// 托盘库位关系表
    /// </summary>
    [Table("wms_containerplace")]
    [Comment("托盘库位关系表")]
    public class WmsContainerPlace:DEntityBase
    {
        /// <summary>
        /// 库位ID
        /// </summary>
        [Comment("库位ID")]
        [Required]
 
        public long PlaceId { get; set; }
 
        /// <summary>
        /// 库位编码
        /// </summary>
        [Comment("库位编码")]
        [Required]
 
        [MaxLength(50)]
        public string PlaceCode { get; set; }
 
        /// <summary>
        /// 托盘ID
        /// </summary>
        [Comment("托盘ID")]
        [Required]
 
        public long ContainerId { get; set; }
 
        /// <summary>
        /// 库位编码
        /// </summary>
        [Comment("库位编码")]
        [Required]
 
        [MaxLength(50)]
        public string ContainerCode { get; set; }
 
        /// <summary>
        /// 状态;数据字典
        /// </summary>
        [Comment("状态")]
        [Required]
 
        public CommonStatus ContainerPlaceStatus { get; set; }
 
        /// <summary>
        ///
        /// </summary>
        public WmsContainer WmsContainer { get; set; }
 
        public WmsPlace WmsPlace { get; set; }
 
    }
}