using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEA_DTO.MES
|
{
|
public class MesLotInfoModel
|
{
|
public string Product { get; set; }
|
public string ProductVersion { get; set; }
|
public decimal Qty { get; set; }
|
public string DateCode { get; set; }
|
public string LotNo { get; set; }
|
public bool IsFullNumber { get; set; }
|
}
|
}
|