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

28 lines
591 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module.DB.Model
{
public class MHotPlateInfo
{
/// <summary>
/// 热板上下当前位置
/// </summary>
public string F_HpTopCurrLocation { get; set; }
/// <summary>
/// 热板当前温度
/// </summary>
public string F_HpCurrTemp { get; set; }
/// <summary>
/// 热板零点位置
/// </summary>
public string F_HpZeroPosition { get; set; }
}
}