using System;
using System.Collections.Generic;
using System.Text;
namespace Model.ModelDto.BllAsnDto
{
public class LabelPrintInfoDto
{
///
/// 剩余打印的数量
///
public string Qty { get; set; }
///
/// 生产日期
///
public string ProductionTime { get; set; }
///
/// 有效期
///
public string ExpirationTime { get; set; }
///
/// 储存期至
///
public string StoreTime { get; set; }
///
/// 供货批次
///
public string SupplierLot { get; set; }
}
}