schangxiang@126.com
2025-08-25 aa383c30e4f1053e97c6a33ccf9a899fca26dd20
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
namespace iWareDataCore.ORM
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    [Table("BASEPlace")]
    public partial class BASEPlace
    {
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
        public BASEPlace()
        {
            BASEPlaceVoidLabels = new HashSet<BASEPlaceVoidLabel>();
        }
 
        public int id { get; set; }
 
        [Required]
        [StringLength(50)]
        public string code { get; set; }
 
        public int typeid { get; set; }
 
        public int row { get; set; }
 
        public int col { get; set; }
 
        public int layer { get; set; }
 
        public decimal width { get; set; }
 
        public decimal length { get; set; }
 
        public decimal height { get; set; }
 
        public decimal maxweight { get; set; }
 
        public int heightlevel { get; set; }
 
        public int posx { get; set; }
 
        public int posy { get; set; }
 
        public int posz { get; set; }
 
        public int status { get; set; }
 
        public int islock { get; set; }
 
        public int isexecute { get; set; }
 
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<BASEPlaceVoidLabel> BASEPlaceVoidLabels { get; set; }
    }
}