Files
FA_WEB/SytelineSaAppEfDataModel/Dtos/LotDto.cs
Piotr Kus a8e3a8be66 * Added Lot table and service
* Changed behaviour of scanning to scan first PartNumber, select specific record and then scan MeylePartNumber
2025-06-17 08:30:10 +02:00

32 lines
1.2 KiB
C#

namespace SytelineSaAppEfDataModel.Dtos;
public class LotDto
{
public string Item { get; set; }
public string LotNumber { get; set; }
public decimal? RcvdQty { get; set; }
public DateTime? CreateDate { get; set; }
public DateTime? ExpDate { get; set; }
public DateTime? PurgeDate { get; set; }
public string VendLot { get; set; }
public string CertNum { get; set; }
public string Charfld1 { get; set; }
public string Charfld2 { get; set; }
public string Charfld3 { get; set; }
public DateTime? Datefld { get; set; }
public decimal? Decifld1 { get; set; }
public decimal? Decifld2 { get; set; }
public decimal? Decifld3 { get; set; }
public bool Logifld { get; set; }
public bool NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDateField { get; set; }
public bool InWorkflow { get; set; }
public bool ContainsTaxFreeMatl { get; set; }
public string AttrGroup { get; set; }
public string ManufacturerId { get; set; }
public string ManufacturerItem { get; set; }
}