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.
36 lines
784 B
36 lines
784 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MESClassLibrary.Model
|
|
{
|
|
public class PunchMFAModel
|
|
{
|
|
public string CarModelCode { get; set; }
|
|
|
|
public string productionNumber { get; set; }
|
|
|
|
public string itemNumber { get; set; }
|
|
|
|
public string description { get; set; }
|
|
|
|
public DateTime assemblyDate { get; set; }
|
|
|
|
public string BillNo { get; set; }
|
|
|
|
public string partType { get; set; }
|
|
|
|
public string ColorName { get; set; }
|
|
|
|
public string BarCode { get; set; }
|
|
|
|
public int Sort { get; set; }
|
|
|
|
public string ColorCode { get; set; }
|
|
|
|
public DateTime CheckTime { get; set; }
|
|
|
|
public string DeviceNo { get; set; }
|
|
}
|
|
}
|
|
|