using System; using System.Collections.Generic; using System.Text; namespace wms.dto.response.cp { public class LabellingMachineResponse { /// /// 标题模板 (前缀 LABLC) /// public string LabelName { get; set; } /// /// 箱号 (前缀 FD + 内容) /// public string FN1 { get; set; } /// /// 结构 (前缀 FD + 内容) /// public string FN2 { get; set; } /// /// 重量 (前缀 FD + 内容) /// public string FN3 { get; set; } /// /// 托盘类型 (前缀 FD + 内容) /// public string FN4 { get; set; } /// /// 物料号 (前缀 FD + 内容) /// public string FN5 { get; set; } /// /// 工字轮型号 (前缀 FD + 内容) /// public string FN6 { get; set; } /// /// 二维码内容(前缀 FDLA, + 箱号) /// public string FN7 { get; set; } /// /// 箱号 (前缀 FD + 内容) /// public string FN8 { get; set; } } }