using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// AGV小车绑定状态枚举类 /// public enum AGVBindStatus { /// /// 已绑定 /// Bind = 1, /// /// 已解绑 /// UnBind = 2 } }