注塑喷涂
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.
 
 
 
 
 

30 lines
749 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 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 BatchNo { get; set; }
}
}