42 lines
971 B
C#
42 lines
971 B
C#
|
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;
|
|||
|
|
|||
|
namespace YD_AllHeartRates.Commons.Dto.Device
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 设备列表
|
|||
|
/// </summary>
|
|||
|
public class DevicePageListDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 设备的唯一编码
|
|||
|
/// </summary>
|
|||
|
public string Code { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///设备类型[1:心率/2:跳绳]
|
|||
|
/// </summary>
|
|||
|
public int DeviceType { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///学生学号
|
|||
|
/// </summary>
|
|||
|
public string StudentNo { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///学生姓名
|
|||
|
/// </summary>
|
|||
|
public string StudentName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 是否绑定
|
|||
|
/// </summary>
|
|||
|
public bool IdBind { get; set; }
|
|||
|
}
|
|||
|
}
|