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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
|
|
|
{
|
|
|
|
|
public class Hw_PlanCompletion
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计划号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PlanId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 配方号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Recipe_ID { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 序列号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Plan_Serial { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 物料号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Material_ID { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 版本
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Version { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计划执行次数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Real_Num { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 重量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double Material_Weight { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 误差
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double Material_Error { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|