TSYS_Message.cs 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. #nullable disable
  5. namespace Ropin.Inspection.Model.Entities
  6. {
  7. public partial class TSYS_Message
  8. {
  9. [Key]
  10. public string C_ID { get; set; }
  11. public string C_LicenseCode { get; set; }
  12. public string C_Content { get; set; }
  13. public string C_DevStoreCode { get; set; }
  14. public string C_MsgTypeCode { get; set; }
  15. public string C_Subject { get; set; }
  16. public DateTime? D_MsgCreateOn { get; set; }
  17. public string C_GenerationCode { get; set; }
  18. public int? I_GenerationType { get; set; } = 1;
  19. public int? I_MsgStatus { get; set; } = 0;
  20. public string C_Remark { get; set; }
  21. public string C_CreateBy { get; set; }
  22. public string C_Creator { get; set; }
  23. public DateTime D_CreateOn { get; set; }
  24. public string C_LastUpdatedBy { get; set; }
  25. public string C_Modifier { get; set; }
  26. public DateTime? D_LastUpdatedOn { get; set; }
  27. public string C_Status { get; set; } = "1";
  28. }
  29. }