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.
40 lines
888 B
C#
40 lines
888 B
C#
using GalaSoft.MvvmLight;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Scada.UI.Page.Model
|
|
{
|
|
/// <summary>
|
|
/// 执行计划
|
|
/// </summary>
|
|
public class ReaderInfo : ObservableObject
|
|
{
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
public int No { get; set; }
|
|
/// <summary>
|
|
/// MES条码
|
|
/// </summary>
|
|
public string ShellCode { get; set; }
|
|
/// <summary>
|
|
/// 成品条码
|
|
/// </summary>
|
|
public string LinerCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 绑定结果
|
|
/// </summary>
|
|
public string BindingResult { get; set; }
|
|
|
|
/// <summary>
|
|
/// 记录时间
|
|
/// </summary>
|
|
public string RecordTime1 { get; set; }
|
|
|
|
}
|
|
}
|