using JNPF.DependencyInjection; using JNPF.Extend.Entitys.Dto.ProductEntry; namespace JNPF.Extend.Entitys.Dto.Product; /// /// 销售订单信息. /// [SuppressSniffer] public class ProductInfoOutput { /// /// 主键. /// public string id { get; set; } /// /// 订单编号. /// public string code { get; set; } /// /// 客户id. /// public string customerId { get; set; } /// /// 客户名称. /// public string customerName { get; set; } /// /// 审核人. /// public string auditName { get; set; } /// /// 审核日期. /// public DateTime? auditDate { get; set; } /// /// 发货仓库. /// public string goodsWarehouse { get; set; } /// /// 发货通知时间. /// public DateTime? goodsDate { get; set; } /// /// 发货通知人. /// public string goodsName { get; set; } /// /// 收款方式. /// public string gatheringType { get; set; } /// /// 业务员. /// public string business { get; set; } /// /// 送货地址. /// public string address { get; set; } /// /// 联系方式. /// public string contactTel { get; set; } /// /// 收货消息. /// public int harvestMsg { get; set; } /// /// 收货仓库. /// public string harvestWarehouse { get; set; } /// /// 代发客户. /// public string issuingName { get; set; } /// /// 让利金额. /// public decimal? partPrice { get; set; } /// /// 优惠金额. /// public decimal? reducedPrice { get; set; } /// /// 折后金额. /// public decimal? discountPrice { get; set; } /// /// 备注. /// public string description { get; set; } /// /// 子表数据. /// public List productEntryList; }