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
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 实体类xl_weigh
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class xl_weigh
|
|
|
|
|
{
|
|
|
|
|
#region 公有属性
|
|
|
|
|
|
|
|
|
|
public string ID { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Equip_Code { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string Recipe_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? Weight_Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Material_ID { get; set; }
|
|
|
|
|
public int Station { get; set; }
|
|
|
|
|
public double Set_Weight { get; set; }
|
|
|
|
|
public double Set_Error { get; set; }
|
|
|
|
|
public double Cpk_Error { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|