using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Admin.Core.Model
{
///
///
///
[SugarTable( "Hw_weigh", "cwss_xl")]
public class Hw_weigh
{
public Hw_weigh()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:False
///
public string Dosing_ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:False
///
public string Plan_ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Recipe_ID { 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; }
}
}