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