步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
593 B

namespace BBWY.Server.Model.Dto
3 years ago
{
public class XingXinagSearchResponse
{
public string Spu { get; set; }
//public decimal TotalCost { get; set; }
public decimal Profit { get; set; }
3 years ago
/// <summary>
/// 刷单单量
/// </summary>
public decimal SDOrderCount { get; set; }
/// <summary>
/// 刷单成本
/// </summary>
public decimal SDOrderCost { get; set; }
/// <summary>
/// 刷单成交额
/// </summary>
public decimal SDOrderAmount { get; set; }
3 years ago
}
}