using JNPF.DependencyInjection;
using JNPF.Extend.Entitys.Model;
namespace JNPF.Extend.Entitys.Dto.ProductEntry;
///
///
///
[SuppressSniffer]
public class ProductEntryListOutput
{
///
/// 产品编号.
///
public string productCode { get; set; }
///
/// 产品名称.
///
public string productName { get; set; }
///
/// 数量.
///
public int qty { get; set; }
///
/// 订货类型.
///
public string type { get; set; }
///
/// 活动.
///
public string activity { get; set; }
///
/// 数据.
///
public List dataList { get; set; }
}