You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
915 B
47 lines
915 B
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ParkingLotEntity.DB; |
|
|
|
public partial class AiEpOutcome |
|
{ |
|
/// <summary> |
|
/// id |
|
/// </summary> |
|
public int Id { get; set; } |
|
|
|
/// <summary> |
|
/// 配置ID |
|
/// </summary> |
|
public long? ConfigId { get; set; } |
|
|
|
/// <summary> |
|
/// 预测时间 |
|
/// </summary> |
|
public DateTime? PredictTime { get; set; } |
|
|
|
/// <summary> |
|
/// 结果 |
|
/// </summary> |
|
public float? OutCome { get; set; } |
|
|
|
/// <summary> |
|
/// 编辑时间 |
|
/// </summary> |
|
public DateTime? EditTime { get; set; } |
|
|
|
/// <summary> |
|
/// 预测日期 |
|
/// </summary> |
|
public DateOnly? PredictDay { get; set; } |
|
|
|
/// <summary> |
|
/// 预测小时 |
|
/// </summary> |
|
public int? PredictHour { get; set; } |
|
|
|
/// <summary> |
|
/// 投切机组,分割 |
|
/// </summary> |
|
public string? CuttingUnit { get; set; } |
|
}
|
|
|