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.
|
|
|
|
namespace ZJ_BYD.ViewModel
|
|
|
|
|
{
|
|
|
|
|
public class LineStationVM
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 工控机编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Ipc { get; set; }
|
|
|
|
|
|
|
|
|
|
public string LineCode { get; set; }
|
|
|
|
|
|
|
|
|
|
public string PlcIp { get; set; }
|
|
|
|
|
|
|
|
|
|
public string PlcPort { get; set; }
|
|
|
|
|
|
|
|
|
|
public string StationCode { get; set; }
|
|
|
|
|
|
|
|
|
|
public string StationName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MachineTypeCode { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MachineTypeName { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsUsed { get; set; }
|
|
|
|
|
|
|
|
|
|
public string StrIsUsed { get; set; }
|
|
|
|
|
|
|
|
|
|
public int SortIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Category { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|