using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TeamAAS_VP.Models.Robot { /// /// 多机器人点位表 /// public class MultipleRobotPoint: RPoint { private Guid _RobotId; /// /// 机器人 /// public Guid RobotId { get { return _RobotId; } set { SetProperty(ref _RobotId, value); } } } }