You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System ;
using System.Runtime.Serialization ;
namespace SlnMesnac.Model.dto
{
/// <summary>
/// 投料信息
/// </summary>
[DataContract(Name = "IngredientInfo 投料信息")]
public class IngredientInfo
{
/// <summary>
/// 机台编号, 预留可传0
/// </summary>
public int EquipId { get ; set ; }
/// <summary>
/// 料罐编号
/// </summary>
public string CanNumber { get ; set ; }
/// <summary>
/// 物料条码
/// </summary>
public string MaterialBarcode { get ; set ; }
/// <summary>
/// 投入数量
/// </summary>
public int InputQuantity { get ; set ; }
/// <summary>
/// 投入重量
/// </summary>
public double InputWeight { get ; set ; }
/// <summary>
/// 是否余料
/// </summary>
public bool IsRemainder { get ; set ; }
/// <summary>
/// 余料数量
/// </summary>
public int RemainderQuantity { get ; set ; }
/// <summary>
/// 余料重量
/// </summary>
public double RemainderWeight { get ; set ; }
/// <summary>
/// 是否开仓: 1-开仓; 2-只保存
/// </summary>
public int IsOpen { get ; set ; }
/// <summary>
/// 记录时间
/// </summary>
public DateTime RecordTime { get ; set ; }
}
}