schangxiang@126.com
2025-04-01 2b0d3b1a9f62e5ec48e4b559f95b3d4bdc3bee09
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
using System;
using System.Text;
using System.Collections.Generic;
namespace Excel2SQL
{
    //物料实体
    public class MaterialEntity
    {
 
        /// <summary>
        /// 物料号
        /// </summary>
        public string MaterialCode { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        public string MaterialName { get; set; }
 
        /// <summary>
        /// 供应商
        /// </summary>
        public string Vendor { get; set; }
 
        /// <summary>
        /// PO
        /// </summary>
        public string PO { get; set; }
 
        /// <summary>
        /// 数量
        /// </summary>
        public string Qty { get; set; }
 
 
    }
 
 
}