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.
34 lines
739 B
34 lines
739 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MESClassLibrary.Model
|
|
{
|
|
public class PunchAndStationModel1
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
public string StationNo { get; set; }
|
|
|
|
public string PartNo1 { get; set; }
|
|
|
|
public string ProductName1 { get; set; }
|
|
|
|
public string PartNo2 { get; set; }
|
|
|
|
public string ProductName2 { get; set; }
|
|
|
|
public string PartNo3 { get; set; }
|
|
|
|
public string ProductName3 { get; set; }
|
|
|
|
public string PartNo4 { get; set; }
|
|
|
|
public string ProductName4 { get; set; }
|
|
|
|
public string PartNo5 { get; set; }
|
|
|
|
public string ProductName5 { get; set; }
|
|
}
|
|
}
|
|
|