123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel
- {
- public class TispSpotUserViewModel : BaseViewModel
- {
- public Guid C_ID { get; set; }
- public Guid C_UserCode { get; set; }
- public Guid C_SpotCode { get; set; }
- public string C_Remark { get; set; }
- public string StoreName { get; set; }
- public string StoreCode { get; set; }
- //public Guid C_CreateBy { get; set; }
- //public DateTime D_CreateOn { get; set; }
- //public Guid C_LastUpdatedBy { get; set; }
- //public DateTime D_LastUpdatedOn { get; set; }
- //public string C_Status { get; set; }
- /// <summary>
- /// 用户名
- /// </summary>
- public string C_UserName { get; set; }
- /// <summary>
- /// 巡检点名称
- /// </summary>
- public string C_SpotName { get; set; }
- }
- public class TispUserStoreRouteSpotViewModel : BaseViewModel
- {
- public string StoreCode { get; set; }
- public string StoreName { get; set; }
- public IList<SimSpot> SpotUserList { get; set; }
- }
- public class SimSpot
- {
- public Guid C_SpotCode { get; set; }
- public string C_SpotName { get; set; }
- }
- }
|