using JNPF.DependencyInjection; namespace JNPF.Extend.Entitys.Model; /// /// 产品明细. /// [SuppressSniffer] public class ProductEntryMdoel { /// /// 产品规格. /// public string productSpecification { get; set; } /// /// 数量. /// public string qty { get; set; } /// /// 单价. /// public decimal money { get; set; } /// /// 折后单价. /// public decimal price { get; set; } /// /// 单位. /// public string util { get; set; } /// /// 控制方式. /// public string commandType { get; set; } }