using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.Entity
{
///
/// 实体类LR_weigh
///
[Serializable]
public class LR_weigh
{
[Column(IsIdentity =true,IsPrimary =true)]
public int ID { get; set; }
public string Dosing_ID { get; set; }
public string Plan_ID { get; set; }
public string Recipe_ID { get; set; }
public int Bin_Serial { get; set; }
public string Material_ID { get; set; }
public string Material_Name { get; set; }
public decimal Set_Weight { get; set; }
public decimal Set_Error { get; set; }
public decimal Real_Weight { get; set; }
public decimal Real_Error { get; set; }
public string EndTime { get; set; }
///
/// 执行ID
///
public int MainId { get; set; }
}
}