using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.ViewModel { public class TispSpotConfigureUpdateViewModel { ///// ///// 巡检点编号 ///// //public Guid C_Code { get; set; } /// /// 二维码编号 /// public string C_QRCode { get; set; } public string C_GPS { get; set; } /// /// GPS误差范围 /// public int I_Offset { get; set; } public string C_ImageUrl { get; set; } //public string C_StoreCode { get; set; } //public string C_AreaCode { get; set; } //public decimal? F_Map_X { get; set; } //public decimal? F_Map_Y { get; set; } public bool IsUpdateGPS { get; set; } } }