parking-webapi/WebApi_data_value/Models/Parking_spaces_roi_violation.cs

19 lines
575 B
C#
Raw Normal View History

2024-02-01 13:48:38 +08:00
namespace WebApi_data_value.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; }
}
}