12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.Entities
- {
- public class TLGS_LargeScreenControl
- {
- [Key]
- public string C_ID { get; set; }
- public string C_LargeScreenCode { get; set; }
- public string C_ControlID { get; set; }
- public string C_ControlName { get; set; }
- public string C_Type { get; set; }
- public string C_Script { get; set; }
- public string C_Style { get; set; }
- public string C_Template { get; set; }
- public string C_Password { get; set; }
- public string C_Remark { 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; }
- }
- }
|