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.

27 lines
573 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZJ_BYD.ViewModel
{
public class UsingMaChineTypeVM
{
/// <summary>
/// 工位编码
/// </summary>
public string StationCode { get; set; }
/// <summary>
/// 工位名称
/// </summary>
public string StationName { get; set; }
/// <summary>
/// 是否显示工单绑定按钮
/// </summary>
public bool IsShowOrderBtn { get; set; }
}
}