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.
63 lines
1.9 KiB
63 lines
1.9 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NFine.Application.KBSWMS
|
|
{
|
|
/// <summary>
|
|
/// 月度一次检验合格率
|
|
/// </summary>
|
|
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; }
|
|
/// <summary>
|
|
/// 当月累计
|
|
/// </summary>
|
|
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; }
|
|
/// <summary>
|
|
/// 年度累计
|
|
/// </summary>
|
|
public decimal? AnnualAccumulation { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 每周开始日期和结束日期
|
|
/// </summary>
|
|
|
|
public class WeekRange
|
|
{
|
|
public string Start { get; set; }
|
|
public string End { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 一年的每月的开始时间和结束时间
|
|
/// </summary>
|
|
public class MonthRange
|
|
{
|
|
public string Start { get; set; }
|
|
public string End { get; set; }
|
|
}
|
|
|
|
|
|
}
|