using System;
using System.Collections.Generic;
namespace CouponReport.Models.Parkingeyes;
public partial class PaymentDevice
{
///
/// 裝置序號
///
public string DeviceId { get; set; } = null!;
///
/// IP位置
///
public string Ip { get; set; } = null!;
///
/// 類別, APS=1
///
public int DeviceType { get; set; }
///
/// 啟用否
///
public string Enable { get; set; } = null!;
}