using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Model.Enum { /// /// 上报方式类型 /// public enum MethodType { Manual = 0, // 手动 Period = 1 // 周期性 } }