wangxinhui
2025-05-13 ad4d32dc4e162ba7fb71cd3bc213f1d71c964551
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.ERP
{
    /// <summary>
    /// 成品库存面积接收返参
    /// </summary>
    public class ErpProInErpStaticResponseContent
    {
        /// <summary>
        /// 返回码
        /// </summary>
        public int Code { get; set; }
        /// <summary>
        /// 返回信息
        /// </summary>
        public string Msg { get; set; }
        /// <summary>
        /// 库存信息
        /// </summary>
        public List<ProInStatic> Data { get; set; }
    }
    /// <summary>
    /// 参数
    /// </summary>
    public class ProInStatic
    {
        /// <summary>
        /// 生产版本
        /// </summary>
        public string PartRev { get; set; }
        /// <summary>
        /// 生产型号
        /// </summary>
        public string PartNum { get; set; }
        /// <summary>
        /// 目前固定为1
        /// </summary>
        public string Jbfl { get; set; }
        /// <summary>
        /// 单元面积
        /// </summary>
        public float UnitArea { get; set; }
        /// <summary>
        /// 生产型号+生产版本
        /// </summary>
        public string PartNumWithRev { get; set; }
    }
}