using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Modules.CalcPriceShowConfigModule.Dto { /// /// 计算指标 /// public class CalcQuotaDto { /// /// 名称 /// public string Name { get; set; } /// /// 提示 /// public string Tip { get; set; } } }