using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Plc.PlcEntity
{
///
/// 工位配方信息
///
public class StationRecipeEntity
{
///
/// 工位配方描述
///
public string StationRecipeDescripe { get; set; }
///
/// 工位配方号
///
public short StationRecipeNo { get; set; }
///
/// 工位小车号
///
public short StationVehicleNo { get; set; }
///
/// 称重工位胎坯重量
///
public float StationTireWeight { get; set; }
}
}