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
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
namespace Admin.NET.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; }
    }
}