using System;
using System.Collections.Generic;
using System.Text;
namespace Operater.DTO
{
public class GetTodayDataResponse
{
///
/// 有赞订单量
///
public int YzTradeCount { get; set; }
///
/// 有赞订单金额
///
public decimal YcTradeAmount { get; set; }
///
/// 有赞付款金额
///
public decimal YzPayAmount { get; set; }
///
/// 利润
///
public decimal ProfitPay { get; set; }
}
public class GetStaticDataRequest
{
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
}
}