using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.LjPlanning.Entity
{
public class FormulaMain
{
public FormulaMain() { }
}
public class ClEntity
{
public int Id { get; set; }
///
/// 罐号Id
///
public int StockMaterialId { get; set; }
public float Weight { get; set; }
public float Tolerance { get; set; }
}
public class ChEntity
{
///
/// 代码
///
public int ActionId { get; set; }
///
/// 时间
///
public int TimeInfo { get; set; }
///
/// 温度
///
public float Temp { get; set; }
///
/// 温度
///
public float Speed { get; set; }
///
/// 设定重量
///
public float SetValue { get; set; }
///
/// 设定公差
///
public float SetTolerance { get; set; }
}
}