parking-webapi/WebApi_data_value/Models/Parking_spaces_roi_violation.cs
2024-03-05 19:49:58 +08:00

19 lines
578 B
C#

namespace Parking_space_WebAPI.Models
{
public class Parking_spaces_roi_violation
{
public string? parking_spaces_name { get; set; }
public string? cam_ip { get; set; }
public string? roi_x1 { get; set; }
public string? roi_x2 { get; set; }
public string? roi_y1 { get; set; }
public string? roi_y2 { get; set; }
public string? roi_function { get; set; }
public string? mode { get; set; }
public DateTime? data_create_time { get; set; }
public string? serial_num { get; set; }
}
}