36 lines
959 B
C#
36 lines
959 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 SportsAbnormalReportDto
|
|
{
|
|
public string SBID { get; set; }
|
|
public string XSEDUID { get; set; }
|
|
public List<AbnormalHeartRateRecordDto> HDSJ { get; set; }
|
|
}
|
|
|
|
public class AbnormalHeartRateRecordDto
|
|
{
|
|
public string SJSJ { get; set; }
|
|
public int XL { get; set; }
|
|
public int JXXL { get; set; }
|
|
public string YCXX { get; set; }
|
|
public string YCYY { get; set; }
|
|
}
|
|
|
|
public class AbnormalHeartPackage
|
|
{
|
|
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<SportsAbnormalReportDto> DATA { get; set; }
|
|
}
|
|
|
|
}
|