using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 送检单打印模板对象 /// public class InspectOrderPrintParam { /// /// 质检单号 /// [PrintAttribute] public string taskNo { get; set; } /// /// 流转卡号 /// [PrintAttribute] public string processCardNumber { get; set; } /// /// 流转卡中填入的热处理炉号,用于流转卡打印时的展示 /// [PrintAttribute] public string heatingNumber { get; set; } /// /// 物料编码 /// [PrintAttribute] public string materialCode { get; set; } /// /// 零件号 /// [PrintAttribute] public string partNumber { get; set; } /// /// 零件名称 /// [PrintAttribute] public string partName { get; set; } /// /// 原材料牌号 /// [PrintAttribute] public string typeOfSteels { get; set; } /// /// 原材料炉号 /// [PrintAttribute] public string steelsHeatNo { get; set; } /// /// 原材料规格 /// [PrintAttribute] public string steelsSize { get; set; } /// /// 热处理炉号 /// [PrintAttribute] public int? loadNumber { get; set; } /// /// 试生产号 /// [PrintAttribute] public string pilotNo { get; set; } /// /// 送检日期时间 /// [PrintAttribute] public string requestDate { get; set; } /// /// 送检次数 /// [PrintAttribute] public int inspectCount { get; set; } } }