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

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MESClassLibrary.Model
{
public class PaintBarCodeModel
{
public string ID { get; set; }
public string StationID { get; set; }
public string ProductID { get; set; }
public string OneBarCode { get; set; }
public string BarCode { get; set; }
public string StockNo { get; set; }
public string ColorDes { get; set; }
public string Side { get; set; }
public DateTime CreateTime { get; set; }
public DateTime PrintTime { get; set; }
public string workClass { get; set; }
public string ProductDate { get; set; }
public string PrintReason { get; set; }
public string PrintPerson { get; set; }
}
}