using System;
using System.Collections.Generic;
namespace CouponReport.Models.Parkingeyes;
public partial class AlertLpr
{
///
/// 車牌序號
///
public string LprId { get; set; } = null!;
///
/// 通知編號
///
public string? AlertId { get; set; }
///
/// 車牌號碼,以","分開
///
public string? LprNo { get; set; }
///
/// 運算欄位,無逗號的車牌
///
public string? LprNo2 { get; set; }
public virtual AlertSetting? Alert { get; set; }
}