37 lines
882 B
37 lines
882 B
6 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace MESClassLibrary.Model
|
||
|
{
|
||
|
public class BarCodeModel
|
||
|
{
|
||
|
public string ID { get; set; }
|
||
|
public string OneBarCode { get; set; }
|
||
|
public string BarCode { get; set; }
|
||
|
public string StockNo { get; set; }
|
||
|
|
||
|
public string PartNo { get; set; }
|
||
|
public int PrintType { get; set; }
|
||
|
|
||
|
public string StationID { get; set; }
|
||
|
|
||
|
public DateTime PrintTime { get; set; }
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
|
||
|
public string Import { get; set; }
|
||
|
|
||
|
public string StationID2 { get; set; }
|
||
|
|
||
|
public string PlanID { get; set; }
|
||
|
|
||
|
public string BoxNo { get; set; }
|
||
|
|
||
|
public int IsBad { get; set; }
|
||
|
|
||
|
public string ProductNature { get; set; }
|
||
|
}
|
||
|
}
|