using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEA_DTO.Stock
|
{
|
public class StockDetailDtO
|
{
|
|
public int Id { get; set; }
|
|
|
public int StockId { get; set; }
|
|
|
public string MaterielCode { get; set; }
|
|
|
public string MaterielName { get; set; }
|
|
|
public string OrderNo { get; set; }
|
|
|
public string BatchNo { get; set; }
|
|
|
public string ProductionDate { get; set; }
|
|
|
public string EffectiveDate { get; set; }
|
|
|
public string SerialNumber { get; set; }
|
|
|
public decimal StockQuantity { get; set; }
|
|
|
public decimal OutboundQuantity { get; set; }
|
|
|
public int Status { get; set; }
|
|
|
public string Unit { get; set; }
|
|
public string InboundOrderRowNo { get; set; }
|
|
|
public string? SupplyCode { get; set; }
|
|
public string FactoryArea { get; set; }
|
|
public string? WarehouseCode { get; set; }
|
|
|
public string? Barcode { get; set; }
|
|
|
|
public string? BusinessType { get; set; }
|
|
|
public decimal BarcodeQty { get; set; }
|
|
public string BarcodeUnit { get; set; }
|
|
public DateTime? ValidDate { get; set; }
|
|
public string Remark { get; set; }
|
|
}
|
}
|