using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_DTO.Outbound
{
///
/// 扫码出库信息
///
public class OutProInfoDTO
{
///
/// 产品编号
///
public string ProductCode { get; set; }
///
/// 产品编号出库数量
///
public int OutQtys { get; set; }
}
}