using JNPF.DependencyInjection; namespace JNPF.Extend.Entitys.Dto.Order; /// /// 获取订单列表-订单商品. /// [SuppressSniffer] public class OrderItemsOutput { /// /// 主键id. /// public string? id { get; set; } /// /// 商品名称. /// public string? goodsName { get; set; } /// /// 规格型号. /// public string? specifications { get; set; } /// /// 单位. /// public string? unit { get; set; } /// /// 数量. /// public decimal? qty { get; set; } /// /// 单价. /// public decimal? price { get; set; } /// /// 金额. /// public decimal? amount { get; set; } /// /// 折扣. /// public decimal? discount { get; set; } /// /// 税率. /// public decimal? cess { get; set; } /// /// 实际单价. /// public decimal? actualPrice { get; set; } /// /// 实际金额. /// public decimal? actualAmount { get; set; } /// /// 备注. /// public string? description { get; set; } }