schangxiang@126.com
2025-09-19 9be9c3784b2881a3fa25e93ae2033dc2803c0ed0
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
80
81
82
83
84
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace wcftest.EnumDefine
{
    /// <summary>
    /// 按单收货-退货 参数
    /// </summary>
    public class receipiEntity
    {
 
        #region 收货同时支持组盘 【Editby shaocx,2024-09-08】
 
        /// <summary>
        /// 托盘号
        /// </summary>
        public string plateCode { get; set; }
 
        #endregion
 
 
        #region 收货支持二维码 【Editby shaocx,2023-11-5】
 
        /// <summary>
        /// 二维码的GUID
        /// </summary>
        public string qrCode_guid { get; set; }
 
        #endregion
 
        public string poCode { get; set; }
        public string moveType { get; set; }
        public List<receipiList> dataList { get; set; }
 
        /// <summary>
        /// 是否自动打印 【Editby shaocx,2022-06-13】
        /// </summary>
        public bool isAutoPrint { get; set; }
 
        /// <summary>
        /// 打印标记 (0不打印 1:入库口打印机 2:出库口打印机)
        /// </summary>
        public int printFlag { get; set; }
 
        /// <summary>
        /// 创建人 【Editby shaocx,2024-02-27】
        /// </summary>
        public string creator { get; set; }
    }
    public class receipiList
    {
      
 
        /// <summary>
        /// 明细ID
        /// </summary>
        public int orderList_Id { get; set; }
        /// <summary>
        /// 收货日期
        /// </summary>
        public decimal quantity { get; set; }
        /// <summary>
        /// 限用日期
        /// </summary>
        public DateTime limitDate { get; set; }
        /// <summary>
        /// 存储位置
        /// </summary>
        public string productBarCode { get; set; }
        /// <summary>
        /// 单位转换
        /// </summary>
        public decimal unitConvert { get; set; }
        /// <summary>
        /// 转换系数
        /// </summary>
        public decimal unEnterQuantity { get; set; }
 
 
    }
}