This commit is contained in:
2024-08-26 18:46:15 +08:00
parent 956fccaf6b
commit be00d09fac
6 changed files with 127 additions and 8 deletions

View File

@@ -20,6 +20,15 @@
public int? qty { get; set; }
public string bill_code { get; set; }
public string equip_name { get; set; }
/// <summary>
/// 物料规格
/// </summary>
public string? material_specification { get; set; }
/// <summary>
/// 物料型号
/// </summary>
public string? material_standard { get; set; }
}
public class CheckTaskOut
@@ -168,6 +177,7 @@
public string? result { get; set; }
public List<List<Checktype>>? checktypes { get; set; }
public CheckCarry carryInfo { get; set; }
}
public class Checktype
{
@@ -186,5 +196,15 @@
public PostItemForm? postItemForm { get; set; }
public string? result { get; set; }
}
public class CheckCarry
{
public string carry_name { get; set; }
public string location_id { get; set; }
public string location_code { get; set; }
public string is_check { get; set; }
public string material_name { get; set; }
public decimal qty { get; set; }
}
}

View File

@@ -41,7 +41,11 @@ namespace Tnb.QcMgr.Entities.Enums
[Remark("首检", "开工检")]
= 15,
[Remark("末检", "末检触发事件")]
= 16
= 16,
[Remark("巡检", "巡检")]
= 17,
[Remark("巡检", "巡检")]
= 18,
}
public class RemarkAttribute : Attribute
{