using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using FreeSql.DataAnnotations;
namespace Mesnac.Action.ChemicalWeighing.FreeDb.DBEntity
{
[Table(Name = "Lj_Formula_Detail_Down")]
public partial class LjFormulaDetailDownEntity
{
[Column(IsPrimary = true, IsIdentity = true)]
public int Id { get; set; }
public int? ActionCode { get; set; }
///
/// 动作Id
///
public int? ActionId { get; set; }
///
/// 动作名称
///
[Column(DbType = "nvarchar(50)")]
public string ActionName { get; set; } = string.Empty;
public int BinNo { get; set; }
///
/// 糊化机称量Copy
///
public int? CbCopyC { get; set; }
///
/// 湿混机混合配方copy
///
public int? CbCopyH { get; set; }
///
/// 糊化机混合配方copy
///
public int? CpSiloH { get; set; }
public int FormulaId { get; set; }
///
/// 1 称量 2 混合
///
public int FormulaType { get; set; }
///
/// 机台
///
[Column(DbType = "nvarchar(2)")]
public string Machine { get; set; } = string.Empty;
[Column(DbType = "nvarchar(50)")]
public string MachineType { get; set; } = string.Empty;
///
/// 物料编码
///
public int MId { get; set; }
[Column(DbType = "nvarchar(50)")]
public string MName { get; set; } = string.Empty;
public double? SetTolerance { get; set; }
public double? SetValue { get; set; }
///
/// 速度
///
public double? Speed { get; set; }
///
/// 物料Id
///
public int? StockMaterialId { get; set; }
///
/// 温度
///
public double? Temp { get; set; }
public double? TimeInfo { get; set; }
public double Tolerance { get; set; }
///
/// 重量
///
public double Weight { get; set; }
}
}