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.

47 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.Entity
{
/// <summary>
/// 实体类Pmt_weigh
/// </summary>
[Serializable]
public class Pmt_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 decimal Set_Weight { get; set; }
public decimal Set_Error { get; set; }
public decimal Cpk_Error { get; set; }
/// <summary>
/// 理论固含
/// </summary>
public decimal TheoryRate { get; set; }
/// <summary>
/// 是否有固含
/// </summary>
public bool IsRate { get; set; }
/// <summary>
/// 固含量
/// </summary>
public double RateWeight { get; set; }
#endregion
}
}