Files
T-DAS/Epost.Model/PalletinfoModel.cs
2024-11-22 15:31:46 +08:00

45 lines
2.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class PalletinfoModel : Base
{
int _id = 0;
string _wmsDocNo = string.Empty;
string _groupTaskId = string.Empty;
string _palletId = string.Empty;
string _sku = string.Empty;
string _skuDescr1 = string.Empty;
string _qty = string.Empty;
string _lotatt01 = string.Empty;
string _lotatt02 = string.Empty;
string _lotatt04 = string.Empty;
string _lotatt07 = string.Empty;
string _lotatt08 = string.Empty;
string _notes = string.Empty;
string _taskType = string.Empty;
private Nullable<DateTime> _addtime;
private Nullable<DateTime> _endtime;
public int id { get => _id; set => _id = value; }
public string wmsDocNo { get => _wmsDocNo; set => _wmsDocNo = value; }
public string groupTaskId { get => _groupTaskId; set => _groupTaskId = value; }
public string palletId { get => _palletId; set => _palletId = value; }
public string sku { get => _sku; set => _sku = value; }
public string skuDescr1 { get => _skuDescr1; set => _skuDescr1 = value; }
public string qty { get => _qty; set => _qty = value; }
public string lotatt01 { get => _lotatt01; set => _lotatt01 = value; }
public string lotatt02 { get => _lotatt02; set => _lotatt02 = value; }
public string lotatt04 { get => _lotatt04; set => _lotatt04 = value; }
public string lotatt07 { get => _lotatt07; set => _lotatt07 = value; }
public string lotatt08 { get => _lotatt08; set => _lotatt08 = value; }
public string notes { get => _notes; set => _notes = value; }
public string taskType { get => _taskType; set => _taskType = value; }
public DateTime? addtime { get => _addtime; set => _addtime = value; }
public DateTime? endtime { get => _endtime; set => _endtime = value; }
}
}