using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.Dto
{
///
/// 平台库存DTO
///
public class PlatformInventoryDto
{
///
/// 仓库
///
public string? Location { get; set; }
///
/// 规格
///
public string? SpecificationModel { get; set;}
///
/// 批号
///
public string? BatchNumber { get; set; }
///
/// 库存数量
///
public decimal? InventoryQuantity { get; set; }
///
/// 有效期
///
public decimal? PeriodOfValidity { get; set; }
}
}