using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace AMESCoreStudio.WebApi.DTO.AMES { /// <summary> /// BarcodeItemKP Dto /// </summary> public class BarcodeItemKPDto { /// <summary> /// 工單號碼 /// </summary> public string wipNo { get; set; } /// <summary> /// 工單號碼OD /// </summary> public int wipId { get; set; } /// <summary> /// 內部條碼ID /// </summary> public int barCode { get; set; } /// <summary> /// 內部條碼No /// </summary> public string barCodeNo { get; set; } /// <summary> /// 工單-生產單位 /// </summary> public string unitNo { get; set; } /// <summary> /// 作業站-生產單位 /// </summary> public string ststionUnitNo { get; set; } /// <summary> /// List BarCodeCheckDto.inputItem /// </summary> public List<BarCodeCheckDto.inputItem> inputKP { get; set; } } }