TmtnDevOpsPlanContent.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using Microsoft.EntityFrameworkCore;
  6. #nullable disable
  7. namespace Ropin.Inspection.Model.Entities
  8. {
  9. [Table("TMTN_DevOpsPlanContent")]
  10. public partial class TmtnDevOpsPlanContent
  11. {
  12. [Key]
  13. [Column("C_ID", TypeName = "varchar(50)")]
  14. public string CId { get; set; }
  15. [Required]
  16. [Column("C_DevOpsPlanDeviceCode", TypeName = "varchar(50)")]
  17. public string CDevOpsPlanDeviceCode { get; set; }
  18. [Required]
  19. [Column("C_SpotCode", TypeName = "varchar(50)")]
  20. public string CSpotCode { get; set; }
  21. [Required]
  22. [Column("C_DevOpsContentCode", TypeName = "varchar(50)")]
  23. public string CDevOpsContentCode { get; set; }
  24. [Column("I_Sort")]
  25. public bool? ISort { get; set; }
  26. [Column("C_Remark", TypeName = "varchar(1024)")]
  27. public string CRemark { get; set; }
  28. [Required]
  29. [Column("C_CreateBy", TypeName = "varchar(100)")]
  30. public string CCreateBy { get; set; }
  31. [Required]
  32. [Column("C_Creator", TypeName = "varchar(50)")]
  33. public string CCreator { get; set; }
  34. [Column("D_CreateOn", TypeName = "datetime")]
  35. public DateTime D_CreateOn { get; set; }
  36. [Column("C_LastUpdatedBy", TypeName = "varchar(50)")]
  37. public string CLastUpdatedBy { get; set; }
  38. [Column("D_LastUpdatedOn", TypeName = "datetime")]
  39. public DateTime? DLastUpdatedOn { get; set; }
  40. [Column("C_Modifier", TypeName = "varchar(50)")]
  41. public string CModifier { get; set; }
  42. [Column("I_IsDel")]
  43. public bool IIsDel { get; set; }
  44. public TmtnDevOpsPlanDevice TmtnDevOpsPlanDevice { get; set; }
  45. }
  46. }