You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
629 B
C#

namespace ZJ_BYD
{
public class GlobalVariable
{
public GlobalVariable()
{
}
/// <summary>
/// 产线编号
/// </summary>
public static string LineCode { get; set; }
/// <summary>
/// 产线名称
/// </summary>
public static string LineName { get; set; }
/// <summary>
/// 工位编码
/// </summary>
public static string StationCode { get; set; }
/// <summary>
/// 工位名称
/// </summary>
public static string StationName { get; set; }
}
}