using System; using System.Collections.Generic; #nullable disable namespace YLShipBuildLandMap.Entity { public partial class BdDepartmentOrServicePoint { public BdDepartmentOrServicePoint() { BdDepartmentOrServicePointBmBuildingFloorRoom = new HashSet(); } public Guid DepartmentOrServicePointId { get; set; } public string Name { get; set; } public string OpenTime { get; set; } public string ContactType { get; set; } public string Description { get; set; } public int? RecordStatus { get; set; } public DateTime? CreateTime { get; set; } public Guid? CreateUserId { get; set; } public Guid? ModifyUserId { get; set; } public DateTime? ModifyTime { get; set; } public virtual ICollection BdDepartmentOrServicePointBmBuildingFloorRoom { get; set; } } }