Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/Dashboard/DashboardDailyTrendPointDto.cs 323 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
  namespace FoodLabeling.Application.Contracts.Dtos.Dashboard;
  
  /// <summary>
  /// 日趋势点
  /// </summary>
  public class DashboardDailyTrendPointDto
  {
      /// <summary>日期(yyyy-MM-dd</summary>
      public string Date { get; set; } = string.Empty;
  
      /// <summary></summary>
      public int Value { get; set; }
  }