using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RS.Model { /// /// 冲洗臂 /// public class FlushRecipeArm { /// /// 位置1 /// public float flush_location_one { get; set; } /// /// 位置2 /// public float flush_location_two { get; set; } /// /// 速度 /// public float flush_speed { get; set; } /// /// 冲洗臂配方 /// public string flush_recipe_name { get; set; } /// /// 类别 /// public string flush_type { get; set; } } }