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.

46 lines
1003 B
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.

namespace ZJ_BYD.ViewModel
{
public class PostMesTestItemVM
{
/// <summary>
/// 测试项
/// </summary>
public string TestItem { get; set; }
/// <summary>
/// 测试结果
/// </summary>
public string TestResult { get; set; }
/// <summary>
/// 测试值
/// </summary>
public string TestVal { get; set; }
}
public class PostMesSubInfo
{
/// <summary>
/// 物料号
/// </summary>
public string MaterialNum { get; set; }
/// <summary>
/// 版本号
/// </summary>
public string VersionNo { get; set; }
/// <summary>
/// 组件条码
/// </summary>
public string SubCode { get; set; }
/// <summary>
/// 内外部批次
/// 内部INVENTORY_ID_SFC
/// 外部EXTERNAL_LOT
/// </summary>
public string ItemType { get; set; }
}
}