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.
35 lines
1.1 KiB
35 lines
1.1 KiB
2 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace MESClassLibrary.Model
|
||
|
{
|
||
|
public class InspectResultGroup
|
||
|
{
|
||
|
public string barcode { get; set; }
|
||
|
public string side { get; set; }
|
||
|
public string position { get; set; }
|
||
|
public string stationNo { get; set; }
|
||
|
public string workClass { get; set; }
|
||
|
public string productInfo { get; set; }
|
||
|
public string productOption { get; set; }
|
||
|
public string inspectResult_1 { get; set; }
|
||
|
public string damnPosition_1 { get; set; }
|
||
|
public string reason_1 { get; set; }
|
||
|
public string createTime_1 { get; set; }
|
||
|
|
||
|
public string inspectResult_2 { get; set; }
|
||
|
public string damnPosition_2 { get; set; }
|
||
|
public string reason_2 { get; set; }
|
||
|
public string createTime_2 { get; set; }
|
||
|
|
||
|
public string inspectResult_3 { get; set; }
|
||
|
public string damnPosition_3 { get; set; }
|
||
|
public string reason_3 { get; set; }
|
||
|
public string createTime_3 { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|