using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Model.Enum { /// /// 定位类型 /// public enum LocationType { GPS = 1, LBS = 2, WIFI = 3, WifiPlus = 4 } }