using System;
using System.Collections.Generic;
namespace ParkingLotEntity.DB;
public partial class AiEpOutcome
{
///
/// id
///
public int Id { get; set; }
///
/// 配置ID
///
public long? ConfigId { get; set; }
///
/// 预测时间
///
public DateTime? PredictTime { get; set; }
///
/// 结果
///
public float? OutCome { get; set; }
///
/// 编辑时间
///
public DateTime? EditTime { get; set; }
///
/// 预测日期
///
public DateOnly? PredictDay { get; set; }
///
/// 预测小时
///
public int? PredictHour { get; set; }
///
/// 投切机组,分割
///
public string? CuttingUnit { get; set; }
}