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.
27 lines
671 B
27 lines
671 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MESClassLibrary.Model
|
|
{
|
|
public class InspectResultModel
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
public string barcode { get; set; }
|
|
public string side { get; set; }
|
|
|
|
public string stationNo { get; set; }
|
|
|
|
public string workClass { get; set; }
|
|
public string inspectResult { get; set; }
|
|
|
|
public string productInfo { get; set; }
|
|
public string productOption { get; set; }
|
|
public string InspectTimes { get; set; }
|
|
|
|
public DateTime createTime { get; set; }
|
|
}
|
|
}
|
|
|