Waste/Waste.Application/ReportInfo/Dtos/ReportDto.cs

29 lines
656 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Waste.Domain;
namespace Waste.Application
{
/// <summary>
/// 统计列表
/// </summary>
public class ReportList : W_DeviceStatistics
{
/// <summary>
/// 商户名称
/// </summary>
public string BusinessName { get; set; } = "";
/// <summary>
/// 设备名称
/// </summary>
public string DevName { get; set; } = "";
/// <summary>
/// 设备编号
/// </summary>
public string DevCode { get; set; } = "";
}
}