This commit is contained in:
2024-12-18 15:50:21 +08:00
parent 684973e6b7
commit b2c54119ea
214 changed files with 65908 additions and 8461 deletions

View File

@@ -0,0 +1,53 @@
using FreeSql.DataAnnotations;
namespace CapMachine.Model
{
/// <summary>
/// 历史工况对应的文件信息
/// </summary>
[Table(Name = "HistoryWorkCondFile")]
public class HistoryWorkCondFile
{
/// <summary>
/// 主键
/// </summary>
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
///// <summary>
///// 序号
///// </summary>
//[Column(Name = "Index")]
//public int Index { get; set; }
/// <summary>
/// 日期
/// </summary>
[Column(Name = "WorkDay", IsNullable = false, StringLength = 50)]
public string? WorkDay { get; set; }
/// <summary>
/// 文件路径
/// </summary>
[Column(Name = "FilePath", IsNullable = false, StringLength = 200)]
public string? FilePath { get; set; }
///// <summary>
///// 开始时间
///// </summary>
//[Column(Name = "StartTime")]
//public DateTime StartTime { get; set; }
///// <summary>
///// 结束时间
///// </summary>
//[Column(Name = "EndTime")]
//public DateTime EndTime { get; set; }
/// <summary>
/// ///////////////////////////////////////////导航属性///////////////////////////////////////////////////////
/// </summary>
public long HistoryExpId { get; set; }
public HistoryExp? HistoryExp { get; set; }
}
}