using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace AMESCoreStudio.Web.ViewModels.QRS
{
    public class QRS014BViewModel
    {
        public QRS014BViewModel()
        {
            FPYDatas = new List<FPY4MonthGroup>();
        }

        public List<FPY4MonthGroup> FPYDatas { get; set; }
    }

    public class FPY4MonthGroup
    {

        /// <summary>
        /// 月份
        /// </summary>
        public string Month { get; set; }

        /// <summary>
        /// 良率
        /// </summary>
        public double Yield { get; set; }
    }
}