using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_AllHeartRates.Commons.Dto.Device
{
///
/// 导入设备
///
public class ImportDeviceDto
{
///
/// 设备编号
///
[Display(Name = "设备编号")]
public string Code { get; set; }
///
///设备类型[1:心率/2:跳绳]
///
[Display(Name = "设备类型")]
public int DeviceType { get; set; }
///
///学生学号
///
[Display(Name = "学生学号")]
public string StudentNo { get; set; }
}
}