schangxiang@126.com
2025-09-04 e9269528ae01bc4572b68148b9c801b51f23b669
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using yunneiPda.orm;
 
 
namespace yunneiPda.Models
{
    public class InStockOrderView
    {
        /// <summary>
        /// 类型:body header
        /// </summary>
        public string type { get; set; }
 
        public int orderCodeId { get; set; }
 
        public string productCode { get; set; }
 
        public int quantity { get; set; }
 
        public string station { get; set; }
        public string toStieCode { get; set; }
        public string containerCode { get; set; }
        public string materialName { get; set; }
        public string supplier { get; set; }
 
        public List<inStockOrderDetail> dataList { get; set; }
    }
 
    public class inStockOrderDetail
    {
        public int id { get; set; }
        public string serialNumber { get; set; }
    }
}