using System; using System.Collections.Generic; namespace CouponReport.Models.Parkingeyes; public partial class RoadsideSignRecord { public long Id { get; set; } public long RoadsideTicketId { get; set; } /// /// 進場序號 /// public string SerialNo { get; set; } = null!; /// /// 路邊單號 /// public string RoadsideTicketNo { get; set; } = null!; /// /// 加簽開始時間 /// public DateTime StartTime { get; set; } /// /// 加簽分鐘數 /// public int Minutes { get; set; } /// /// 路邊的應收金額 /// public decimal? Receivable { get; set; } /// /// 繳費機的應收金額 /// public decimal? DeviceReceivable { get; set; } /// /// 開單照片實體路徑 /// public string? SignPhotoPath { get; set; } public DateTime CreateTime { get; set; } /// /// 簽單是否被刪除(取消) /// public bool IsDeleted { get; set; } public virtual RoadsideTicket RoadsideTicket { get; set; } = null!; }