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
namespace iWareLog.ORM
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    [Table("InOutStorageDetail")]
    public partial class InOutStorageDetail
    {
        public int id { get; set; }
 
        public int formplaceid { get; set; }
 
        [Required]
        [StringLength(20)]
        public string fromplacecode { get; set; }
 
        public int? toplaceid { get; set; }
 
        [StringLength(20)]
        public string toplacecode { get; set; }
 
        public DateTime createtime { get; set; }
 
        public DateTime? updatetime { get; set; }
 
        /// <summary>
        /// ÈÎÎñÀàÐÍ£¬Ã¶¾Ù  EMainTaskType
        /// </summary>
        public int type { get; set; }
 
        public int? equipid { get; set; }
 
        [StringLength(50)]
        public string equipname { get; set; }
 
        public int? materialid { get; set; }
 
        [StringLength(50)]
        public string materialcode { get; set; }
 
 
        public int? isSendToMes { get; set; }
 
        public string isSendToMesStr { get; set; }
 
        public int? SendToMesCount { get; set; }
 
        public DateTime? SendToMesTime { get; set; }
 
        public string MesRet { get; set; }
 
    }
}