30 lines
600 B
C#
30 lines
600 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VOL.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 达标率
|
|||
|
/// </summary>
|
|||
|
public class AttainmentRateModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 达标类型
|
|||
|
/// </summary>
|
|||
|
public int AttainmentType { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 总人数
|
|||
|
/// </summary>
|
|||
|
public int TotalNumber { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 达标人数
|
|||
|
/// </summary>
|
|||
|
public int AttainmentNumber { get; set; }
|
|||
|
}
|
|||
|
}
|