jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Basic
{
    public class OmsCheckResultEntity
    {
        public string CN_S_INSPECT_NO { get; set; }//检验单号
        public List<Inspects> InspectList { get; set; } //检验单子表列表
    }
 
    public class Inspects
    {
        public string CN_S_OP_NO { get; set; } //采购订单号
        public string CN_N_ROW { get; set; } //采购订单行号
        public string CN_S_ITEM_CODE { get; set; } //物料编码
        public int CN_S_CHECK_QTY { get; set; } //检验数
        public int CN_S_NREG_QTY { get; set; } //不合格数
        public int CN_S_REGULAR_QTY { get; set; } //合格数
    }
    public class OmsCheckResultResponse
    {
        public bool Success { get; set; }
        public string ErrorCode { get; set; }
        public string ErrorMes { get; set; }
    }
}