34 lines
801 B
C#
34 lines
801 B
C#
|
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
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 导入设备
|
|||
|
/// </summary>
|
|||
|
public class ImportDeviceDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 设备编号
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "设备编号")]
|
|||
|
public string Code { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///设备类型[1:心率/2:跳绳]
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "设备类型")]
|
|||
|
public int DeviceType { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///学生学号
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "学生学号")]
|
|||
|
public string StudentNo { get; set; }
|
|||
|
}
|
|||
|
}
|