123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel
- {
- public class TispSpotsRegionsViewModel : BaseViewModel
- {
- public string C_RegionName { get; set; }
- public Guid C_RegionID { get; set; }
- public Guid C_SpotID { get; set; }
- public string C_RegionImageUrl { get; set; }
- public string C_SpotName { get; set; }
- public DateTime D_CreateOn { get; set; }
- public string C_UserName { get; set; }
- public string C_Remark { get; set; }
- public string C_Status { get; set; }
- public string C_SpotGPS { get; set; }
- public string C_SpotStatus { get; set; }
-
- }
- }
|