using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace APT.BaseData.Domain.ApiModel { public class ConvertRatioModel { /// /// 比率 /// public decimal ConvertRatio { get; set; } /// /// 分子 /// public decimal ConvertRatioNumerator { get; set; } //分母 public decimal ConvertRatioDenominator { get; set; } } }