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.
20 lines
598 B
20 lines
598 B
using Magicodes.ExporterAndImporter.Core;
|
|
using Magicodes.ExporterAndImporter.Excel;
|
|
|
|
namespace Entity.Dto;
|
|
|
|
[ExcelExporter(Name = "CHARGE STATISTICS", TableStyle = OfficeOpenXml.Table.TableStyles.None, AutoFitAllColumn = true)]
|
|
public class ChargeCountDto2
|
|
{
|
|
/// <summary>
|
|
/// 时间
|
|
/// </summary>
|
|
[ExporterHeader(DisplayName = "TIME", IsBold = true)]
|
|
public string? Time { get; set; }
|
|
|
|
/// <summary>
|
|
/// 充电度数
|
|
/// </summary>
|
|
[ExporterHeader(DisplayName = "ELECTRICITY CONSUMPTION/kWh", IsBold = true)]
|
|
public decimal? ChargeCount { get; set; }
|
|
} |