using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NFine.Application.KBSWMS
{
///
/// 月度一次检验合格率
///
public class PassFirstTimeModel
{
public string Decomposition1 { get; set; }
public string Decomposition2 { get; set; }
public string TargetDecomposition { get; set; }
public decimal? Week1 { get; set; }
public decimal? Week2 { get; set; }
public decimal? Week3 { get; set; }
public decimal? Week4 { get; set; }
public decimal? Week5 { get; set; }
public decimal? Week6 { get; set; }
///
/// 当月累计
///
public decimal? MonthlyCumulative { get; set; }
public decimal? Month1 { get; set; }
public decimal? Month2 { get; set; }
public decimal? Month3 { get; set; }
public decimal? Month4 { get; set; }
public decimal? Month5 { get; set; }
public decimal? Month6 { get; set; }
public decimal? Month7 { get; set; }
public decimal? Month8 { get; set; }
public decimal? Month9 { get; set; }
public decimal? Month10 { get; set; }
public decimal? Month11 { get; set; }
public decimal? Month12 { get; set; }
///
/// 年度累计
///
public decimal? AnnualAccumulation { get; set; }
}
///
/// 每周开始日期和结束日期
///
public class WeekRange
{
public string Start { get; set; }
public string End { get; set; }
}
///
/// 一年的每月的开始时间和结束时间
///
public class MonthRange
{
public string Start { get; set; }
public string End { get; set; }
}
}