配置参数下载和解析的开发-未完成

This commit is contained in:
2025-02-24 11:21:23 +08:00
parent c22a8cc98f
commit d2ef6f9961
25 changed files with 2273 additions and 189 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Models.ProModelPars
{
/// <summary>
/// 斜率执行步骤
/// </summary>
public class SlopExStep
{
/// <summary>
/// 步骤号
/// </summary>
public int StepNo { get; set; }
/// <summary>
/// SV值
/// </summary>
public int SV { get; set; }
/// <summary>
/// 是否已经执行
/// </summary>
public bool IsHasEx { get; set; }=false;
}
}