裕隆城折扣合作@中興低碳 折扣報表
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
756B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace CouponReport.Models.Parkingeyes;
  4. public partial class Division
  5. {
  6. /// <summary>
  7. /// 區域編號
  8. /// </summary>
  9. public string DivisionId { get; set; } = null!;
  10. /// <summary>
  11. /// 名稱
  12. /// </summary>
  13. public string DivisionName { get; set; } = null!;
  14. /// <summary>
  15. /// 區域類別
  16. /// </summary>
  17. public int? DivisionType { get; set; }
  18. public string? Enable { get; set; }
  19. public virtual ICollection<DivisionDisplay> DivisionDisplays { get; set; } = new List<DivisionDisplay>();
  20. public virtual TypeDef? DivisionTypeNavigation { get; set; }
  21. public virtual ICollection<ParkingLot> Lots { get; set; } = new List<ParkingLot>();
  22. }