32 lines
601 B
32 lines
601 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace AMESCoreStudio.Web.ViewModels.RPT
|
||
|
{
|
||
|
public class RPT001AViewModel
|
||
|
{
|
||
|
public RPT001AViewModel()
|
||
|
{
|
||
|
Datas = new List<MonthGroup>();
|
||
|
}
|
||
|
|
||
|
public List<MonthGroup> Datas { get; set; }
|
||
|
}
|
||
|
|
||
|
public class MonthGroup
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 月份
|
||
|
/// </summary>
|
||
|
public string Month { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 良率
|
||
|
/// </summary>
|
||
|
public double Yield { get; set; }
|
||
|
}
|
||
|
}
|