软测单独项目
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.
 
 
 
 
 
 

32 lines
700 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FangYar.Model.TRAIN
{
public class HomeResultMo
{
/// <summary>
/// 满分
/// </summary>
public int mf { get; set; }
/// <summary>
/// 优秀
/// </summary>
public int yx { get; set; }
/// <summary>
/// 良好
/// </summary>
public int lh { get; set; }
/// <summary>
/// 达标
/// </summary>
public int db { get; set; }
/// <summary>
/// 不达标
/// </summary>
public int bdb { get; set; }
}
}