2
schangxiang@126.com
2024-10-01 ffa9dc9c2d28c0b8d88b26d483ba9667e316db01
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
namespace iWareSql.Orm
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    public partial class Mes_BatchMat_Param
    {
        public int ID { get; set; }
 
        [Required]
        [StringLength(50)]
        public string PlanNo { get; set; }
 
        [Required]
        [StringLength(50)]
        public string MatID { get; set; }
 
        [Required]
        [StringLength(100)]
        public string MatName { get; set; }
 
        public float Leng { get; set; }
 
        public float Width { get; set; }
 
        public float Thk { get; set; }
 
        public int MaterialIndex { get; set; }
 
        public int StackNo { get; set; }
 
        public float IsAuto { get; set; }
 
        public long BatchSequence { get; set; }
 
        public int Status { get; set; }
 
        [StringLength(100)]
        public string Backup1 { get; set; }
 
        [StringLength(100)]
        public string Backup2 { get; set; }
 
        [StringLength(100)]
        public string Backup3 { get; set; }
 
        [StringLength(100)]
        public string Backup4 { get; set; }
        public int StackSequence { get; set; }
 
        public int? IsDone { get; set; }
 
        public int? SerialNo { get; set; }
 
        public int? PlanNoQuantity { get; set; }
 
        public DateTime? CreatTime { get; set; }
 
        public DateTime? DoneTime { get; set; }
 
        [StringLength(50)]
        public string MatGrid { get; set; }
 
        [StringLength(50)]
        public string Color { get; set; }
 
        public int? IsRealesed { get; set; }
 
        [StringLength(128)]
        public string Creator { get; set; }
 
        [StringLength(128)]
        public string LastModifier { get; set; }
 
        public DateTime? LastModifyTime { get; set; }
 
        [StringLength(1000)]
        public string Remark { get; set; }
 
        //public int? BatchSequenceIndex { get; set; }
    }
}