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