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.

47 lines
1.1 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.CodeBinding.Models
{
/// <summary>
/// 执行计划
/// </summary>
public class ReaderInfo: ObservableObject
{
/// <summary>
/// 序号
/// </summary>
public int No { get; set; }
/// <summary>
/// MES条码
/// </summary>
public string? BoxCode { get; set; }
/// <summary>
/// 成品条码
/// </summary>
public string? ProductCode { get; set; }
/// <summary>
/// 产品型号
/// </summary>
public string? BoxName { get; set; }
/// <summary>
/// 绑定结果
/// </summary>
public string? BindingResult { get; set; }
/// <summary>
/// 放行方式1-自动2-手动
/// </summary>
public string? IsPass { get; set; }
/// <summary>
/// 记录时间
/// </summary>
public string? RecordTime { get; set; }
}
}