物料签收
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
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 num {get;set;}
|
||||
public string batch {get;set;}
|
||||
public string unit_id {get;set;}
|
||||
public string barcode {get;set;}
|
||||
public string member_carry_id {get;set;}
|
||||
public string member_carry_code {get;set;}
|
||||
public string supplier_id {get;set;}
|
||||
public DateTime? instock_time {get;set;}
|
||||
public string check_conclusion {get;set;}
|
||||
}
|
||||
}
|
||||
@@ -77,7 +77,7 @@ public partial class PrdMaterialReceiptD : BaseEntity<string>
|
||||
/// <summary>
|
||||
/// 入库时间
|
||||
/// </summary>
|
||||
public DateTime instock_time { get; set; }
|
||||
public DateTime? instock_time { get; set; }
|
||||
/// <summary>
|
||||
/// 检验结论
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user