using System;
using System.Collections.Generic;
namespace CouponReport.Models.Parkingeyes;
public partial class AlertSetting
{
///
/// 通知編號
///
public string AlertId { get; set; } = null!;
///
/// 類型 1,依照車格 2 依照車號
///
public int? GroupBy { get; set; }
///
/// 名稱
///
public string? AlertName { get; set; }
///
/// 啟動
///
public string? Enbale { get; set; }
///
/// 進場警示
///
public string? Inbound { get; set; }
///
/// 出場警示
///
public string? Outbound { get; set; }
///
/// 通知訊息
///
public string? Message { get; set; }
public virtual ICollection AlertLprs { get; set; } = new List();
public virtual ICollection Lots { get; set; } = new List();
}