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
882 B
36 lines
882 B
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; }
|
|
}
|
|
}
|
|
|