schangxiang@126.com
2025-07-30 a16904bd86f89e97a5e507e08003506c5dd8642e
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
namespace yunneiWCS.ORM
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    [Table("StockClearLog")]
    public partial class StockClearLog
    {
        [StringLength(36)]
        public string ID { get; set; }
 
        [Required]
        [StringLength(128)]
        public string positionName { get; set; }
 
        [StringLength(100)]
        public string serialNumber { get; set; }
 
        [StringLength(100)]
        public string materialCode { get; set; }
 
        [StringLength(100)]
        public string materialName { get; set; }
 
        [StringLength(100)]
        public string version { get; set; }
 
        [StringLength(100)]
        public string supplier { get; set; }
 
        [StringLength(100)]
        public string containerCode { get; set; }
 
        public int? qty { get; set; }
 
        [StringLength(128)]
        public string Remark { get; set; }
 
        [StringLength(128)]
        public string Creator { get; set; }
 
        public DateTime? CreateTime { get; set; }
 
        [StringLength(128)]
        public string LastModifier { get; set; }
 
        public DateTime? LastModifyTime { get; set; }
    }
}