38 lines
958 B
C#
38 lines
958 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_AllHeartRates.Commons.Dto.DataPush
|
|
{
|
|
public class HeartRateRecordDto
|
|
{
|
|
public string SJSJ { get; set; }
|
|
public int XL { get; set; }
|
|
public int JXXL { get; set; }
|
|
}
|
|
|
|
public class StudentData
|
|
{
|
|
public string SBID { get; set; }
|
|
public string XSEDUID { get; set; }
|
|
public List<HeartRateRecordDto> HDSJ { get; set; }
|
|
}
|
|
public class Package
|
|
{
|
|
public string TOKEN { get; set; }
|
|
public string APPID { get; set; }
|
|
public string SCSJ { get; set; }
|
|
public int SJCOUNT { get; set; }
|
|
public string CLIENT_ID { get; set; }
|
|
public List<StudentData> DATA { get; set; }
|
|
}
|
|
|
|
public class SportsRoutineReportResponse
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
}
|
|
}
|