Files
zszq-trs/YLErpDAL/Modules/CalcPriceShowConfigModule/Dto/CalcQuotaDto.cs
T
2024-05-09 14:06:26 +08:00

25 lines
488 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 CalcQuotaDto
{
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 提示
/// </summary>
public string Tip { get; set; }
}
}