schangxiang@126.com
2025-09-04 7cf848238dc91916ebcd1b1de69b373bbf2357a3
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
namespace yunneiWCS
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
 
    public partial class MyVproductStock
    {
        public string positionName { get; set; }
 
        public bool? isLock { get; set; }
 
        public bool? isfree { get; set; }
 
     
        public string materialCode { get; set; }
 
      
        public string materialName { get; set; }
 
        public int? quantity { get; set; }
 
        public int? taskType { get; set; }
 
        public int? status { get; set; }
 
        public DateTime? createTime { get; set; }
 
        public DateTime? updateTime { get; set; }
 
        public bool? enable { get; set; }
 
      
        public long? positionId { get; set; }
 
     
        public long? materialId { get; set; }
 
      
        public string productCode { get; set; }
 
    
        public string containerCode { get; set; }
 
        public byte? positionType { get; set; }
 
     
        public string supplier { get; set; }
 
   
        public string version { get; set; }
    }
}