using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.ProductEntry;
///
/// 销售订单信息.
///
[SuppressSniffer]
public class ProductEntryInfoOutput
{
///
/// 主键.
///
public string id { get; set; }
///
/// 产品编号.
///
public string productCode { get; set; }
///
/// 产品名称.
///
public string productName { get; set; }
///
/// 产品规格.
///
public string productSpecification { get; set; }
///
/// 数量.
///
public int qty { get; set; }
///
/// 订货类型.
///
public string type { get; set; }
///
/// 单价.
///
public decimal money { get; set; }
///
/// 折后单价.
///
public decimal price { get; set; }
///
/// 金额.
///
public decimal amount { get; set; }
///
/// 备注.
///
public string description { get; set; }
}