schangxiang@126.com
2025-09-18 49a51c068d62084bc4c3e77c4be94a20de556c4a
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
75
76
77
78
79
80
81
namespace wcftest.orm
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    [Table("SapSendInfo")]
    public partial class SapSendInfo
    {
        public int id { get; set; }
 
        [Required]
        public string SendSapData { get; set; }
 
        public int moveType { get; set; }
 
        public int? sendCount { get; set; }
 
        public DateTime? creatTime { get; set; }
 
        public DateTime? modifyTime { get; set; }
 
        public int? isFinish { get; set; }
 
        [StringLength(100)]
        public string voucherCode { get; set; }
 
        [StringLength(500)]
        public string Batch { get; set; }
 
        [StringLength(100)]
        public string FromStorageLocation { get; set; }
 
        [StringLength(500)]
        public string MaterialCode { get; set; }
 
        [StringLength(500)]
        public string Plant { get; set; }
 
        public decimal? Quantity { get; set; }
 
        [StringLength(500)]
        public string SType { get; set; }
 
        [StringLength(500)]
        public string SalesOrder { get; set; }
 
        [StringLength(500)]
        public string SalesOrderItem { get; set; }
 
        [StringLength(500)]
        public string SerialNo { get; set; }
 
        [StringLength(100)]
        public string ToStorageLocation { get; set; }
 
        [StringLength(100)]
        public string Unit { get; set; }
 
        [StringLength(500)]
        public string Vendor { get; set; }
 
        [StringLength(500)]
        public string WorkOrder { get; set; }
 
        [StringLength(100)]
        public string StorageLocation { get; set; }
 
        [StringLength(500)]
        public string MaterialName { get; set; }
 
        public string Remark { get; set; }
 
 
        public string RetResult { get; set; }
 
        public string RetMsg { get; set; }
    }
}