TbBusiness.cs 823 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class TbBusiness
  6. {
  7. public TbBusiness()
  8. {
  9. TbBusiHistories = new HashSet<TbBusiHistory>();
  10. }
  11. public string Id { get; set; } = null!;
  12. public string WfId { get; set; } = null!;
  13. public string BusiName { get; set; } = null!;
  14. public string ApplyUser { get; set; } = null!;
  15. public DateTime ApplyTime { get; set; }
  16. public string WfStepId { get; set; } = null!;
  17. public int IsEnd { get; set; }
  18. public virtual TbWorkflow Wf { get; set; } = null!;
  19. public virtual TbWfStep WfStep { get; set; } = null!;
  20. public virtual ICollection<TbBusiHistory> TbBusiHistories { get; set; }
  21. }
  22. }