V1.2
This commit is contained in:
36
CapMachine.Model/ProSegRun.cs
Normal file
36
CapMachine.Model/ProSegRun.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user