1
wangxinhui
2025-06-10 2779947fe07c41250237437365f367b5a78a03b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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; }
    }
}