wangxinhui
4 天以前 a0a0df2e824b6fe7e5a3c0afce78127fecf84fc9
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_External.Model
{
    /// <summary>
    /// 上传明细
    /// </summary>
    public class PB_INV_PRODUCT_INItem
    {
        /// <summary>
        /// 工序序号
        /// </summary>
        public int WP_ID { get; set; }
        /// <summary>
        /// 入库条码
        /// </summary>
        public string INV_BARCODE { get; set; }
        /// <summary>
        /// 入库数量
        /// </summary>
        public int QTY { get; set; }
        /// <summary>
        /// 成品入库
        /// </summary>
        public string REMARK { get; set; } = "成品入库";
    }
    /// <summary>
    /// ERP成品入库上传信息
    /// </summary>
    public class ERPProInUpModel
    {
        /// <summary>
        /// 上传信息
        /// </summary>
        public List<PB_INV_PRODUCT_INItem> PB_INV_PRODUCT_IN { get; set; }
    }
}