BdDepartmentOrServicePoint.cs 991 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class BdDepartmentOrServicePoint
  7. {
  8. public BdDepartmentOrServicePoint()
  9. {
  10. BdDepartmentOrServicePointBmBuildingFloorRoom = new HashSet<BdDepartmentOrServicePointBmBuildingFloorRoom>();
  11. }
  12. public Guid DepartmentOrServicePointId { get; set; }
  13. public string Name { get; set; }
  14. public string OpenTime { get; set; }
  15. public string ContactType { get; set; }
  16. public string Description { get; set; }
  17. public int? RecordStatus { get; set; }
  18. public DateTime? CreateTime { get; set; }
  19. public Guid? CreateUserId { get; set; }
  20. public Guid? ModifyUserId { get; set; }
  21. public DateTime? ModifyTime { get; set; }
  22. public virtual ICollection<BdDepartmentOrServicePointBmBuildingFloorRoom> BdDepartmentOrServicePointBmBuildingFloorRoom { get; set; }
  23. }
  24. }