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.
31 lines
680 B
31 lines
680 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Report.Entity
|
|
{
|
|
public class ConclusionDetails
|
|
{
|
|
/// <summary>
|
|
/// 异常项目名称
|
|
/// </summary>
|
|
public string conclusionName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常人数
|
|
/// </summary>
|
|
public int conclusionCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常比例
|
|
/// </summary>
|
|
public decimal conclusionRatio { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序值
|
|
/// </summary>
|
|
public int displayOrder { get; set; }
|
|
}
|
|
}
|