Files
VisionEdit/ToolLib.VisionJob/VisionJobParams.cs
eggplantlwj 62477b8091 1、修复因加入输入位姿引发的BUG
2、PMA工具完善
3、其他BUG修复
2022-03-21 14:48:26 +08:00

35 lines
840 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* ==============================================================================
*
* Filename: VisionJobParams
* Description:
*
* Version: 1.0
* Created: 2021/2/25 15:22:22
*
* Author: liu.wenjie
*
* ==============================================================================
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ToolLib.VisionJob
{
public class VisionJobParams
{
/// <summary>
/// 当前项目一个项目对应多个JOB
/// </summary>
public static VisionProject pVisionProject{ get; set; } = new VisionProject();
/// <summary>
/// 系统路径
/// </summary>
public static string sSysConfigPath { get; } = @"C:\MyCCDSystem\";
}
}