using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class ProjectGpsPointItem { /// /// ID /// public string LocationId { get; set; } /// /// 坐标 /// public string Point { get; set; } /// /// 项目ID /// public string ProjectId { get; set; } /// /// 序号 /// public int? Orders { get; set; } /// /// 区域ID /// public string GpsAreId { get; set; } } }