zhuangpei-mesbackend/DOAN.Model/Mobile/Dto/BoxLabelAndProductLabelDto.cs
2025-04-06 16:14:31 +08:00

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; }
}
}