成品检验

This commit is contained in:
qianhao.xu
2024-12-27 10:08:11 +08:00
parent b75378c493
commit 80c122558f
15 changed files with 972 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.Mobile.Dto
{
public class IngredientTaskRequestForm
{
public List<MobileTaskDto> Ingredient_task { get; set; }
public string workorder { get; set; }
}
public class IngredientTaskRequestForm2
{
public List<MobileTaskDto> Ingredient_task { get; set; }
public string lineCode { get; set; }
public DateTime HandleDate { get; set; }
}
public class MobileTaskDto
{
/// <summary>
/// 物料code
/// </summary>
public string MaterialCode { get; set; }
/// <summary>
/// 物料名称
/// </summary>
public string MaterialName { get; set; }
/// <summary>
/// 规格型号
/// </summary>
public string Specification { get; set; }
/// <summary>
/// 配料数量
/// </summary>
public decimal Quantity { get; set; }
/// <summary>
/// 单位
/// </summary>
public string Unit { get; set; }
}
}