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("les_entrance")]
    [Comment("库口表")]
    public class LesEntrance : DEntityBase
    {
        /// <summary>
        /// 库区Id
        /// </summary>
        [Comment("库区Id")]
        public long AreaId { get; set; }
 
        /// <summary>
        /// 库口名称
        /// </summary>
        [Comment("库口名称")]
        [MaxLength(50)]
        public string Name { get; set; }
 
        /// <summary>
        /// 库口编码
        /// </summary>
        [Comment("库口编码")]
        [MaxLength(50)]
        public string Code { get; set; }
 
        /// <summary>
        /// 库口类型
        /// </summary>
        [Comment("库口类型")]
        public LesEntranceType EntranceType { get; set; }
 
        /// <summary>
        /// 库口状态
        /// </summary>
        [Comment("库口状态")]
        public CommonStatus CommenStatus { get; set; }
 
        /// <summary>
        /// 库区表
        /// </summary>
        public WmsArea WmsArea { get; set; }
    }
}