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; }
|
}
|
}
|