using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Waste.Domain;
namespace Waste.Application
{
///
/// 统计列表
///
public class ReportList : W_DeviceStatistics
{
///
/// 商户名称
///
public string BusinessName { get; set; } = "";
///
/// 设备名称
///
public string DevName { get; set; } = "";
///
/// 设备编号
///
public string DevCode { get; set; } = "";
///
/// 合计测量次数
///
public int TotalDayCount { get; set; } = 0;
///
/// 合计测量净重
///
public decimal TotalDayPureWeight { get; set; } = 0;
///
/// 合计测量重量
///
public decimal TotalDayWeight { get; set; } = 0;
}
}