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.
33 lines
855 B
C#
33 lines
855 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
{
|
|
/// <summary>
|
|
/// 实体类LR_recipe
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LR_recipe
|
|
{
|
|
|
|
#region 公有属性
|
|
|
|
public string Plan_id { get; set; }
|
|
public string Recipe_ID { get; set; }
|
|
public string Equip_Code { get; set; }
|
|
public int Weight_ID { get; set; }
|
|
public string Material_Code { get; set; }
|
|
public string Material_Name { get; set; }
|
|
public float Set_Weight { get; set; }
|
|
public float Set_Error { get; set; }
|
|
public decimal CPK_Error { get; set; }
|
|
public string Batch_number { get; set; }
|
|
public string remark { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|