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