裕隆城折扣合作@中興低碳 折扣報表
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.

30 line
628B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace CouponReport.Models.Parkingeyes;
  4. public partial class AlertLpr
  5. {
  6. /// <summary>
  7. /// 車牌序號
  8. /// </summary>
  9. public string LprId { get; set; } = null!;
  10. /// <summary>
  11. /// 通知編號
  12. /// </summary>
  13. public string? AlertId { get; set; }
  14. /// <summary>
  15. /// 車牌號碼,以&quot;,&quot;分開
  16. /// </summary>
  17. public string? LprNo { get; set; }
  18. /// <summary>
  19. /// 運算欄位,無逗號的車牌
  20. /// </summary>
  21. public string? LprNo2 { get; set; }
  22. public virtual AlertSetting? Alert { get; set; }
  23. }