30 lines
639 B
C#
30 lines
639 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_AllHeartRates.Commons.Dto.Device
|
|
{
|
|
/// <summary>
|
|
/// 新增设备
|
|
/// </summary>
|
|
public class AddDeviceDto
|
|
{
|
|
/// <summary>
|
|
/// 设备的唯一编码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
///设备类型[1:心率/2:跳绳]
|
|
/// </summary>
|
|
public int DeviceType { get; set; }
|
|
|
|
/// <summary>
|
|
///学生学号
|
|
/// </summary>
|
|
public string StudentNo { get; set; }
|
|
}
|
|
}
|