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.
28 lines
564 B
28 lines
564 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MESClassLibrary.Model
|
|
{
|
|
public class RecordModel
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
public string PartNo1 { get; set; }
|
|
|
|
public string PartNo2 { get; set; }
|
|
|
|
public string BoxNo { get; set; }
|
|
|
|
public DateTime CreateTime1 { get; set; }
|
|
|
|
public DateTime CreateTime2 { get; set; }
|
|
|
|
public int Flag { get; set; }
|
|
|
|
public int Type { get; set; }
|
|
|
|
public string OrderNo { get; set; }
|
|
}
|
|
}
|
|
|