- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace YLShipBuildLandMap.Entity
- {
- public partial class BackBdBuildingXyAxis
- {
- public Guid XyaxisId { get; set; }
- public Guid? BuildingId { get; set; }
- public decimal? Xaxis { get; set; }
- public decimal? Yaxis { get; set; }
- }
- }
|