TDEV_Cmd.cs 992 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Xml.Linq;
  8. namespace Ropin.Inspection.Model.Entities
  9. {
  10. public class TDEV_Cmd
  11. {
  12. [Key]
  13. public string C_ID { get; set; }
  14. public string C_Name { get; set; }
  15. public string C_Number { get; set; }
  16. public string C_Description { get; set; }
  17. public string C_Type { get; set; }
  18. public string C_OrgCode { get; set; }
  19. public bool B_RollBack { get; set; }
  20. public string C_Remark { get; set; }
  21. public string C_CreateBy { get; set; }
  22. public DateTime D_CreateOn { get; set; }
  23. public string C_Creator { get; set; }
  24. public string C_LastUpdatedBy { get; set; }
  25. public DateTime? D_LastUpdatedOn { get; set; }
  26. public string C_Modifier { get; set; }
  27. public string C_Status { get; set; } = "1";
  28. }
  29. }