pan
8 天以前 898b21c72cba3770a6be3c2437f69accbb2bbc91
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Model.Models
{
    public class StockDetailByMateriel
    {
        public int Id { get; set; }
 
 
        public int StockId { get; set; }
 
 
        public string MaterielCode { get; set; }
 
 
        public string MaterielName { get; set; }
 
 
        public string OrderNo { get; set; }
 
 
        public string BatchNo { get; set; }
 
 
        public string ProductionDate { get; set; }
 
 
        public string EffectiveDate { get; set; }
 
 
        public string SerialNumber { get; set; }
 
 
        public decimal StockQuantity { get; set; }
 
 
        public decimal OutboundQuantity { get; set; }
 
 
        public int Status { get; set; }
 
 
        public string Unit { get; set; }
 
        public string InboundOrderRowNo { get; set; }
 
 
        public string? SupplyCode { get; set; }
 
        public string FactoryArea { get; set; }
 
        public string? WarehouseCode { get; set; }
 
 
        public string? Barcode { get; set; }
 
 
 
        public string? BusinessType { get; set; }
 
 
        public decimal BarcodeQty { get; set; }
 
        public string BarcodeUnit { get; set; }
 
        public DateTime? ValidDate { get; set; }
 
        public string Remark { get; set; }
    }
}