This commit is contained in:
2024-09-25 15:44:59 +08:00
parent a76546ebe6
commit 6bf0d5d7ba
72 changed files with 21606 additions and 1608 deletions

View File

@@ -0,0 +1,36 @@
using FreeSql.DataAnnotations;
namespace CapMachine.Model
{
/// <summary>
/// 选中运行的程序名称
/// </summary>
[Table(Name = "ProSegRun")]
public class ProSegRun
{
/// <summary>
/// 主键
/// </summary>
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 运行程序序号
/// </summary>
[Column(Name = "StepNo")]
public int StepNo { get; set; }
/// <summary>
/// 程序名称
/// 工况名称
/// </summary>
[Column(Name = "Name", IsNullable = false, StringLength = 50)]
public string? Name { get; set; }
/// <summary>
/// ///////////////////////////////////////////导航属性///////////////////////////////////////////////////////
/// </summary>
public long ProgramSegId { get; set; }
public ProgramSeg? ProgramSeg { get; set; }
}
}