ke_junjie
2025-06-04 101c57ec4c28bc3c36e49c50a926e9e7c0dd0247
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
84
85
86
87
88
89
90
91
92
93
94
95
namespace iWareSda_QQJF.WCSNEW.EDM
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    public partial class View_BASE_PLACE_VS_CONTAINER
    {
        [Key]
        [Column(Order = 0)]
        [DatabaseGenerated(DatabaseGeneratedOption.None)]
        public int id { get; set; }
 
        [StringLength(50)]
        public string place { get; set; }
 
        [StringLength(50)]
        public string containerName { get; set; }
 
        [StringLength(50)]
        public string itemName { get; set; }
 
        public int? itemNum { get; set; }
 
        public int? isBad { get; set; }
 
        [StringLength(50)]
        public string badByFactory { get; set; }
 
        public decimal? price { get; set; }
 
        [StringLength(50)]
        public string unit { get; set; }
 
        public DateTime? updateTime { get; set; }
 
        public DateTime? CVIUpdateTime { get; set; }
 
        [StringLength(50)]
        public string status { get; set; }
 
        public int? isFull { get; set; }
 
        public int? isLock { get; set; }
 
        [StringLength(50)]
        public string pvcCode { get; set; }
 
        public int? enable { get; set; }
 
        public int? placeLevel { get; set; }
 
        public int? enable2 { get; set; }
 
        [StringLength(50)]
        public string itemDes { get; set; }
 
        [StringLength(50)]
        public string createLine { get; set; }
 
        [StringLength(50)]
        public string inType { get; set; }
 
        [StringLength(50)]
        public string palletType { get; set; }
 
        public int? srmId { get; set; }
 
        public int? overDueTime { get; set; }
 
        public DateTime? Expr1 { get; set; }
 
        public int? maxStorage { get; set; }
 
        public int? minStorage { get; set; }
 
        [Key]
        [Column(Order = 1)]
        [StringLength(2)]
        public string isEmptyContainer { get; set; }
 
        [Key]
        [Column(Order = 2)]
        [DatabaseGenerated(DatabaseGeneratedOption.None)]
        public int stAge { get; set; }
 
        [StringLength(4)]
        public string stStatus { get; set; }
 
        [StringLength(50)]
        public string taskType { get; set; }
    }
}