You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

152 lines
3.5 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
#nullable disable
namespace AMESCoreStudio.WebApi.DTO.AMES
{
public partial class SPC005VIiew
{
public SPC005VIiew()
{
Detail1_ASSY = new List<SPC005Detail1>();
Detail2_ASSY = new List<SPC005Detail2>();
Detail1_TEST = new List<SPC005Detail1>();
Detail2_TEST = new List<SPC005Detail2>();
Detail1_PACK = new List<SPC005Detail1>();
Detail2_PACK = new List<SPC005Detail2>();
}
/// <summary>
/// IPQC編號
/// IPQC編號
/// </summary>
public string InspectionNumber { get; set; }
/// <summary>
/// 抽驗日期
/// </summary>
public string InspectionDate { get; set; }
/// <summary>
/// 工單料號
/// </summary>
public string ItemNo { get; set; }
/// <summary>
/// 料號敘述
/// </summary>
public string ItemNoDesc { get; set; }
/// <summary>
/// 工單號碼
/// </summary>
public string OrderNumber { get; set; }
/// <summary>
/// 醫療機種
/// </summary>
public string MedicalModel { get; set; }
/// <summary>
/// VIP?
/// </summary>
public string VIP { get; set; }
/// <summary>
/// BIOS
/// </summary>
public string BIOSVer { get; set; }
/// <summary>
/// 工單數
/// </summary>
public string PlanQTY { get; set; }
/// <summary>
/// 主管
/// </summary>
public string Approved { get; set; }
/// <summary>
/// 抽驗人員
/// </summary>
public string Inspector { get; set; }
/// <summary>
/// 抽驗人員簽名檔
/// </summary>
public string ApprovedSignImg { get; set; }
/// <summary>
/// 主管簽名檔
/// </summary>
public string InspectorSignImg { get; set; }
public List<SPC005Detail1> Detail1_ASSY { get; set; }
public List<SPC005Detail2> Detail2_ASSY { get; set; }
public List<SPC005Detail1> Detail1_TEST { get; set; }
public List<SPC005Detail2> Detail2_TEST { get; set; }
public List<SPC005Detail1> Detail1_PACK { get; set; }
public List<SPC005Detail2> Detail2_PACK { get; set; }
}
/// <summary>
/// 檢驗工項
/// </summary>
public partial class SPC005Detail1
{
/// <summary>
/// 檢驗序號
/// </summary>
public string BarcodeNO { get; set; }
/// <summary>
/// 檢驗結果
/// </summary>
public string Result { get; set; }
/// <summary>
/// Defect
/// </summary>
public string Defect { get; set; }
/// <summary>
/// Station
/// </summary>
public string Station { get; set; }
}
/// <summary>
/// 檢驗
/// </summary>
public partial class SPC005Detail2
{
/// <summary>
/// 順序
/// </summary>
public string SEQ { get; set; }
/// <summary>
/// 檢驗項目名
/// </summary>
public string InspectionItemDesc { get; set; }
/// <summary>
/// 檢驗結果
/// </summary>
public string InspectionResults { get; set; }
}
}