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.
29 lines
564 B
29 lines
564 B
2 months ago
|
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; }
|
||
|
}
|
||
|
}
|