using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Modules.CalcPriceShowConfigModule.Dto { /// /// 定价显示计算指标配置 /// public class CalcPriceShowCofingDto { /// /// id /// public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 计算指标 /// public List CalcQuota { get; set; } /// /// 是否启用 /// public bool IsEnable { get; set; } } public class CalcQuotaCfg { public string Name { get; set; } public bool IsShow { get; set; } } }