37 lines
788 B
C#
37 lines
788 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.Mobile.Dto
|
|
{
|
|
/// <summary>
|
|
/// 箱子标签和产品标签关联,及产品标签检验,及其工单报工
|
|
/// </summary>
|
|
public class BoxLabelAndProductLabelDto
|
|
{
|
|
/// <summary>
|
|
/// 箱子标签
|
|
/// </summary>
|
|
public string BoxLabel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品标签
|
|
/// </summary>
|
|
public string[] ProductLabelArray { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工单号
|
|
/// </summary>
|
|
public string Workorder { get; set; }
|
|
|
|
|
|
public string LineCode { get; set; }
|
|
|
|
|
|
public string GroupCode { get; set; }
|
|
|
|
}
|
|
}
|