123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Linq;
- namespace Ropin.Inspection.Model.Entities
- {
- public class TDEV_Cmd
- {
- [Key]
- public string C_ID { get; set; }
- public string C_Name { get; set; }
- public string C_Number { get; set; }
- public string C_Description { get; set; }
- public string C_Type { get; set; }
- public string C_OrgCode { get; set; }
- public bool B_RollBack { 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; } = "1";
- }
- }
|