namespace SiNan.Model.Dto
{
///
/// GOI对象
///
public class GOIResponse
{
///
/// 花费
///
public decimal Cost { get; set; }
///
/// 利润
///
public decimal Profit { get; set; }
///
/// GOI
///
public decimal GOI
{
get
{
return Cost == 0M ? 0M : Math.Round(Profit / Cost, 2);
}
}
}
}