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.

40 lines
955 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RS.Model
{
/// <summary>
/// 擦洗臂
/// </summary>
public class ScrubbingRecipeArm
{
/// <summary>
/// 位置1
/// </summary>
public float scrub_position_one { get; set; }
/// <summary>
/// 位置2
/// </summary>
public float scrub_position_two { get; set; }
/// <summary>
/// 速度
/// </summary>
public float scrub_speed { get; set; }
/// <summary>
/// 移动方式
/// </summary>
public string move_method { get; set; }
/// <summary>
///擦洗臂配方名称
/// </summary>
public string scrub_recipe_name { get; set; }
/// <summary>
///类别
/// </summary>
public string scrub_type { get; set; }
}
}