using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model.Minsun
|
{
|
public class ProdMaterialReqOutput
|
{
|
public string BillCode { get; set; }
|
public int BillLine { get; set; }
|
public string MaterialCode { get; set; }
|
public string MaterialName { get; set; }
|
public string MaterialStandard { get; set; }
|
public string UnitCode { get; set; }
|
public double PRQty { get; set; }
|
public double Qty { get; set; }
|
public DateTime? DeliveryDate { get; set; }
|
public string WarehouseCode { get; set; }
|
public string WarehouseName { get; set; }
|
public string Barcode { get; set; }
|
}
|
public class ProdMaterialReqHeaderOutput
|
{
|
public string BillCode { get; set; }
|
public DateTime BillDate { get; set; }
|
public string BizType { get; set; }
|
public string WarehouseCode { get; set; }
|
public string WarehouseName { get; set; }
|
public string SourceCode { get; set; }
|
public string Remark { get; set; }
|
}
|
}
|