37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
namespace Tnb.ProductionMgr.Entities.Dto
|
|
{
|
|
public class NewMaterialReceiptInput
|
|
{
|
|
|
|
/// <summary>
|
|
/// 工位id
|
|
/// </summary>
|
|
public string station_id { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 载具编号
|
|
/// </summary>
|
|
public string? carry_code { get; set; }
|
|
|
|
public List<NewMaterialReceiptDInput>? details { get; set; } = new List<NewMaterialReceiptDInput>();
|
|
|
|
/// <summary>
|
|
/// 存在不属于该任务单的原材料也要签收
|
|
/// </summary>
|
|
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;}
|
|
}
|
|
} |