2025-06-06 16:00:39 +08:00

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; }
}
}