1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel.LGS
- {
- public class LargeScreenEventViewModel : BaseViewModel
- {
- public string C_ID { get; set; }
- public string C_ControlCode { get; set; }
- public string C_ControlName { get; set; }
- public string C_DevStoreCode { get; set; }
- public string C_DevStoreName { get; set; }
- public string C_BoxCode { get; set; }
- public string C_BoxName { get; set; }
- public string C_Name { get; set; }
- public string C_Type { get; set; }
- public string C_TypeName { get; set; }
- public string C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public string C_Creator { get; set; }
- public string C_LastUpdatedBy { get; set; }
- public DateTime? D_LastUpdatedOn { get; set; }
- public string C_Modifier { get; set; }
- public string C_Status { get; set; }
- }
- }
|