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