using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEA_DTO.Stock
|
{
|
public class GenerateOutTaskDto
|
{
|
public int orderId { get; set; }
|
public List<int> orderIds { get; set; }
|
|
public List<StockSelectViewDTO> stockViews { get; set; }
|
|
public string TargetAddress { get; set; }
|
|
public string AreaId { get; set; }
|
public string Warehouse { get; set; }
|
}
|
|
public class StockViewDTO
|
{
|
public string materielCode { get; set; }
|
|
public string materielName { get; set; }
|
|
public decimal useableQuantity { get; set; }
|
|
public string palletCode { get; set; }
|
|
public string locationCode { get; set; }
|
}
|
}
|