using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Model { /// /// 达标率 /// public class AttainmentRateModel { /// /// 达标类型 /// public int AttainmentType { get; set; } /// /// 总人数 /// public int TotalNumber { get; set; } /// /// 达标人数 /// public int AttainmentNumber { get; set; } } }