BackBdBuildingXyAxis.cs 346 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class BackBdBuildingXyAxis
  7. {
  8. public Guid XyaxisId { get; set; }
  9. public Guid? BuildingId { get; set; }
  10. public decimal? Xaxis { get; set; }
  11. public decimal? Yaxis { get; set; }
  12. }
  13. }