数据导入.cs 799 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class 数据导入
  7. {
  8. public string 大楼名 { get; set; }
  9. public string 楼层 { get; set; }
  10. public string 房间号 { get; set; }
  11. public string 部门服务点 { get; set; }
  12. public string 开放时间 { get; set; }
  13. public string 联系方式 { get; set; }
  14. public string 简介 { get; set; }
  15. public string 图片 { get; set; }
  16. public string F9 { get; set; }
  17. public string 为必填项 { get; set; }
  18. public Guid? BuildingId { get; set; }
  19. public Guid? FloorId { get; set; }
  20. public Guid? RoomId { get; set; }
  21. public Guid? DepserviceId { get; set; }
  22. }
  23. }