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.
36 lines
829 B
36 lines
829 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RS.Model
|
|
{
|
|
/// <summary>
|
|
/// 冲洗臂
|
|
/// </summary>
|
|
public class FlushRecipeArm
|
|
{
|
|
/// <summary>
|
|
/// 位置1
|
|
/// </summary>
|
|
public float flush_location_one { get; set; }
|
|
/// <summary>
|
|
/// 位置2
|
|
/// </summary>
|
|
public float flush_location_two { get; set; }
|
|
/// <summary>
|
|
/// 速度
|
|
/// </summary>
|
|
public float flush_speed { get; set; }
|
|
/// <summary>
|
|
/// 冲洗臂配方
|
|
/// </summary>
|
|
public string flush_recipe_name { get; set; }
|
|
/// <summary>
|
|
/// 类别
|
|
/// </summary>
|
|
public string flush_type { get; set; }
|
|
}
|
|
}
|