ImProgControl.cs 638 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImProgControl
  6. {
  7. public ImProgControl()
  8. {
  9. ImProgControlItems = new HashSet<ImProgControlItem>();
  10. }
  11. public string Id { get; set; } = null!;
  12. public string PrjId { get; set; } = null!;
  13. public string ProgCtlName { get; set; } = null!;
  14. public DateTime CreateTime { get; set; }
  15. public virtual ImProject Prj { get; set; } = null!;
  16. public virtual ICollection<ImProgControlItem> ImProgControlItems { get; set; }
  17. }
  18. }