zongzhibin
2024-11-27 5e610f4c9d9870b393720bc5fcc856e97bc2ea4b
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
namespace iWareSql.Orm
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    /// <summary>
    /// ÉÏÁÏÐÅϢչʾ
    /// </summary>
    public partial class BoardLoadMaterialView
    {
        /// <summary>
        /// ÉÏÁϵ¥ºÅ
        /// </summary>
        public string TONumber { 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; }
 
 
 
        /// <summary>
        /// ×îºóÒ»´ÎÈë¿âʱ¼ä
        /// </summary>
        public DateTime? LastModifyTime { get; set; }
 
        /// <summary>
        /// ÈÎÎñºÅ
        /// </summary>
        [StringLength(100)]
        public string TaskNo { get; set; }
 
        /// <summary>
        /// ÒÑÈë¿âÊýÁ¿
        /// </summary>
        public int HasInStoreCount { get; set; }
 
        /// <summary>
        /// Î´Èë¿âÊýÁ¿
        /// </summary>
        public int NoInStoreCount { get; set; }
 
        /// <summary>
        /// ¼Æ»®Èë¿â×ÜÊýÁ¿
        /// </summary>
        public int PlanInStoreTotalCount { get; set; }
 
 
 
    }
}