wangxinhui
23 小时以前 2c889b38311883ceb703c4e0034c798fdaa2e21c
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.Inbound
{
    /// <summary>
    /// 
    /// </summary>
    public class ProInStaticDTO
    {
        /// <summary>
        /// 产品编码
        /// </summary>
        public string ProductCode { get; set; }
        /// <summary>
        /// 产品版本
        /// </summary>
        public string ProductVersion { get; set; }
        /// <summary>
        /// 总PCS数
        /// </summary>
        public float SumPcs { get; set; }
        /// <summary>
        /// 总面积
        /// </summary>
        public float SumPcsArea { get; set; }
    }
}