using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Admin.Core.Model
{
///
///
///
[SugarTable("LR_weigh", "cwss_xl")]
public class LR_weigh
{
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Dosing_ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Plan_ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Recipe_ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? Bin_Serial { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Material_ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Material_Name { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Set_Weight { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Set_Error { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public decimal? Real_Weight { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public decimal? Real_Error { get; set; }
///
/// Desc:称量时间
/// Default:
/// Nullable:True
///
public string EndTime { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int MainId { get; set; }
}
}