using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Entity.Enum;
namespace VOL.Model
{
///
/// 新增体测标准
///
public class AddHealthStandardsParam
{
public int Id { get; set; }
///
///年级Id
///
public int GradeId { get; set; }
///
///性别
///
public SexType Sex { get; set; }
///
///类别枚举值
///
public string CategoryEnum { get; set; }
///
/// 等级
///
public string Rank { get; set; }
///
///得分
/// x
public float Score { get; set; }
///
///标准值(小)
///
public float MinValue { get; set; }
///
///标准值(大)
///
public float MaxValue { get; set; }
///
///创建人
///
public int Creator { get; set; }
///
///创建时间
///
public DateTime? CreateDate { get; set; }
}
}