automapper框架优化
This commit is contained in:
45
Model/Models/Step.cs
Normal file
45
Model/Models/Step.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Model.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 步骤纯数据类(对应 UIShare.UIViewModel.StepModel)
|
||||
/// </summary>
|
||||
public class Step
|
||||
{
|
||||
public Guid ID { get; set; } = Guid.NewGuid();
|
||||
|
||||
public bool IsUsed { get; set; } = true;
|
||||
|
||||
public int Index { get; set; }
|
||||
|
||||
public string? Name { get; set; }
|
||||
|
||||
public string? StepType { get; set; }
|
||||
|
||||
public Method? Method { get; set; }
|
||||
|
||||
public Program? SubProgram { get; set; }
|
||||
|
||||
public int? LoopCount { get; set; }
|
||||
|
||||
public int? CurrentLoopCount { get; set; }
|
||||
|
||||
public Guid? LoopStartStepId { get; set; }
|
||||
|
||||
public int Result { get; set; } = -1;
|
||||
|
||||
public int? RunTime { get; set; }
|
||||
|
||||
public string? OKExpression { get; set; }
|
||||
|
||||
public string GotoSettingString { get; set; } = "";
|
||||
|
||||
public Guid? OKGotoStepID { get; set; }
|
||||
|
||||
public Guid? NGGotoStepID { get; set; }
|
||||
|
||||
public string? Description { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user