You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
794 B
C#

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