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; } = "";
}
}