qinchulong
3 天以前 dc467182bfaeeb0dfd9bc2d6c4ec8fe64b179446
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Common.FangCang
{
    /// <summary>
    /// 产品数据
    /// </summary>
    public class productSynchronous
    {
        /// <summary>
        /// 客户CODE 必填
        /// </summary>
        public string customerCode { get; set; }
 
        /// <summary>
        /// 物料类型CODE(货类 必填
        /// </summary>
        public string materialCode { get; set; }
 
        /// <summary>
        /// 产品编码  可空
        /// </summary>
        public string productCode { get; set; }
 
        /// <summary>
        /// 产品名称 可空
        /// </summary>
        public string productName { get; set; }
 
        /// <summary>
        /// 产品条码 可空
        /// </summary>
        public string productBarCode { get; set; }
 
        /// <summary>
        /// 产品规格 可空
        /// </summary>
        public string productSpecifications { get; set; }
 
        /// <summary>
        /// 计量单位 可空 
        /// </summary>
        public string unit { get; set; }
 
        /// <summary>
        /// 单品长 可空
        /// </summary>
        public string singleProductLongNum { get; set; }
 
        /// <summary>
        /// 单品宽 可空
        /// </summary>
        public string singleProductWideNum { get; set; }
 
        /// <summary>
        /// 单品高 可空
        /// </summary>
        public string singleProductHighNum { get; set; }
 
        /// <summary>
        /// 单品重量 可空
        /// </summary>
        public string singleProductWeight { get; set; }
 
        /// <summary>
        /// 单品体积 可空
        /// </summary>
        public string singleProductVolume { get; set; }
 
        /// <summary>
        /// 是否删除 1是0否  必填
        /// </summary>
        public string Is_delete { get; set; }
    }
}