using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application.Service.WmsTask.WmsRbLineTask.Dto;
public class Home_Order_Info
{
///
/// 数据名称
///
public string Name { get; set; }
///
/// 数据值
///
public int Value { get; set; }
}
public class WmsStockPassMapInput
{
///
/// 日周月选择 --1为日、2为周、三为月
///
public int DayOrWeekOrMonth { get; set; }
}
public class WmsStockPassMapOutput
{
///
/// 标记
///
public int Time { get; set; }
///
/// 入库数
///
public decimal InWare { get; set; }
///
/// 出库数
///
public decimal OutWare { get; set; }
///
/// 库存数
///
public decimal StockNum { get; set; }
///
/// 平均库存数
///
public decimal AveStockNum { get; set; }
public string Date { get; set; }
}