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.
28 lines
704 B
28 lines
704 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; }
|
|
}
|
|
}
|
|
|