namespace Tnb.ProductionMgr.Entities.Dto
{
public class NewMaterialReceiptInput
{
///
/// 工位id
///
public string station_id { get; set; } = string.Empty;
///
/// 载具编号
///
public string? carry_code { get; set; }
public List? details { get; set; } = new List();
///
/// 存在不属于该任务单的原材料也要签收
///
public bool sure { get; set; } = false;
}
public class NewMaterialReceiptDInput
{
public string material_id{get;set;}
public decimal codeqty {get;set;}
public string code_batch {get;set;}
public string unit_id {get;set;}
public string barcode {get;set;}
public string member_carryid {get;set;}
public string member_carrycode {get;set;}
public string supplier_id {get;set;}
public DateTime? instock_time {get;set;}
public string check_conclusion {get;set;}
}
}