You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
916 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSSoft.Entity
{
public class POStockRefuseModel
{
//拒收单ID
public string ID { get; set; }
//拒收单号
public string TransCode { get; set; }
//数量
public string Quantity { get; set; }
//操作人
public string User { get; set; }
//操作时间
public string MTime { get; set; }
//站点
public string WorkPoint { get; set; }
//明细
public List<POStockRefuseDetailModel> Detail { get; set; }
}
public class POStockRefuseDetailModel
{
//行号
public string Sequence { get; set; }
//条码
public string LotNo { get; set; }
//拒收调入库位
public string locationCode { get; set; }
}
}