|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Web.UI.WebControls;
|
|
|
|
|
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; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 动作Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int? ActionId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 动作名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(DbType = "nvarchar(50)")]
|
|
|
|
|
public string ActionName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int BinNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 糊化机称量Copy
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int? CbCopyC { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 湿混机混合配方copy
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int? CbCopyH { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 糊化机混合配方copy
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int? CpSiloH { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int FormulaId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 1 称量 2 混合
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int FormulaType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 机台
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(DbType = "nvarchar(2)")]
|
|
|
|
|
public string Machine { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[Column(DbType = "nvarchar(50)")]
|
|
|
|
|
public string MachineType { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 物料编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 速度
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public double? Speed { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 物料Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int? StockMaterialId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public double? Temp { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public double? TimeInfo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public double Tolerance { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 重量
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public double Weight { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int PlanId { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|