Compare commits
4 Commits
5e3d8b2f62
...
5423f6ab84
| Author | SHA1 | Date | |
|---|---|---|---|
| 5423f6ab84 | |||
| 68664b8884 | |||
| a78947ea00 | |||
| e452d1dce8 |
18
VOL.Ai/IRepositories/IClassroomSettingRepository.cs
Normal file
18
VOL.Ai/IRepositories/IClassroomSettingRepository.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using VOL.Core.BaseProvider;
|
||||
using VOL.Core.Extensions.AutofacManager;
|
||||
using VOL.Entity.DomainModels;
|
||||
|
||||
namespace VOL.Ai.IRepositories
|
||||
{
|
||||
/// <summary>
|
||||
/// Ai课堂设置
|
||||
/// </summary>
|
||||
public interface IClassroomSettingRepository : IDependency, IRepository<Ai_ClassroomSetting>
|
||||
{
|
||||
}
|
||||
}
|
||||
18
VOL.Ai/IRepositories/IClassroomStageRepository.cs
Normal file
18
VOL.Ai/IRepositories/IClassroomStageRepository.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using VOL.Core.BaseProvider;
|
||||
using VOL.Core.Extensions.AutofacManager;
|
||||
using VOL.Entity.DomainModels;
|
||||
|
||||
namespace VOL.Ai.IRepositories
|
||||
{
|
||||
/// <summary>
|
||||
/// Ai课堂阶段
|
||||
/// </summary>
|
||||
public interface IClassroomStageRepository : IDependency, IRepository<Ai_ClassroomStage>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -2,11 +2,13 @@
|
||||
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using OfficeOpenXml.FormulaParsing.Excel.Functions.DateTime;
|
||||
using VOL.Model;
|
||||
using VOL.Model.Ai;
|
||||
using VOL.Model.Ai.Request;
|
||||
using VOL.Model.Ai.Response;
|
||||
using VOL.Model.IOT.Response;
|
||||
using VOL.Model.Training.Response;
|
||||
|
||||
namespace VOL.Ai.IServices
|
||||
{
|
||||
@ -191,14 +193,24 @@ namespace VOL.Ai.IServices
|
||||
/// <returns></returns>
|
||||
Task<IsActivityInListDto> IsActivityInList(IsActivityInListRequest paramDto);
|
||||
|
||||
#endregion
|
||||
|
||||
#region 2.0 接口
|
||||
|
||||
/// <summary>
|
||||
/// Ai一体机扫描那登录轮询
|
||||
/// Ai一体机扫描登录轮询
|
||||
/// </summary>
|
||||
/// <param name="paramDto"></param>
|
||||
/// <returns></returns>
|
||||
Task<Ai_TeacherFaceInfo> ScanCodeLogin(Ai_Request paramDto);
|
||||
|
||||
/// <summary>
|
||||
/// 用户名密码登录
|
||||
/// </summary>
|
||||
/// <param name="paramDto"></param>
|
||||
/// <returns></returns>
|
||||
Task<Ai_TeacherFaceInfo> Login(Ai_LoginRequest paramDto);
|
||||
|
||||
/// <summary>
|
||||
/// 退出登录
|
||||
/// </summary>
|
||||
@ -206,6 +218,51 @@ namespace VOL.Ai.IServices
|
||||
/// <returns></returns>
|
||||
Task<bool> LogOut(LoginOutDto paramDto);
|
||||
|
||||
/// <summary>
|
||||
/// 获取课堂记录列表
|
||||
/// </summary>
|
||||
/// <param name="paramDto"></param>
|
||||
/// <returns></returns>
|
||||
Task<PageDataDto<Ai_ClassRoomRecordPageListDto>> ClassRoomRecordPageList(ClassRoomRecordPageListRequest paramDto);
|
||||
|
||||
/// <summary>
|
||||
/// 获取课堂阶段列表
|
||||
/// </summary>
|
||||
/// <param name="paramDto"></param>
|
||||
/// <returns></returns>
|
||||
Task<List<ClassroomStageDto>> ClassroomStagePageList(Ai_Request paramDto);
|
||||
|
||||
/// <summary>
|
||||
/// 新增课堂设置
|
||||
/// </summary>
|
||||
/// <param name="paramDto"></param>
|
||||
/// <returns></returns>
|
||||
Task<bool> AddClassroomSetting(AddClassroomSettingRequest paramDto);
|
||||
|
||||
/// <summary>
|
||||
/// 更新课堂设置
|
||||
/// </summary>
|
||||
/// <param name="paramDto"></param>
|
||||
/// <returns></returns>
|
||||
Task<bool> UpdateClassroomSetting(UpdateClassroomSettingRequest paramDto);
|
||||
|
||||
/// <summary>
|
||||
/// 获取课堂心率报告
|
||||
/// </summary>
|
||||
Task<Ai_HeartRateReportDto> HeartRateReport(HeartRateReportRequest paramDto);
|
||||
|
||||
/// <summary>
|
||||
/// 获取学生心率报告
|
||||
/// </summary>
|
||||
/// <param name="paramDto"></param>
|
||||
/// <returns></returns>
|
||||
Task<GetStudentClassReportDetailsModel> StudentHeartRateReport(GetStudentClassReportDetailsDto paramDto);
|
||||
|
||||
/// <summary>
|
||||
/// 获取课堂跳绳报告
|
||||
/// </summary>
|
||||
Task<Ai_JumpRopeReportDto> JumpRopeReport(HeartRateReportRequest paramDto);
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
||||
31
VOL.Ai/Repositories/ClassroomSettingRepository.cs
Normal file
31
VOL.Ai/Repositories/ClassroomSettingRepository.cs
Normal file
@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using VOL.Ai.IRepositories;
|
||||
using VOL.Business.IRepositories;
|
||||
using VOL.Core.BaseProvider;
|
||||
using VOL.Core.EFDbContext;
|
||||
using VOL.Core.Extensions.AutofacManager;
|
||||
using VOL.Entity.DomainModels;
|
||||
|
||||
namespace VOL.Ai.Repositories
|
||||
{
|
||||
/// <summary>
|
||||
/// Ai课堂设置
|
||||
/// </summary>
|
||||
public partial class ClassroomSettingRepository : RepositoryBase<Ai_ClassroomSetting>, IClassroomSettingRepository
|
||||
{
|
||||
public ClassroomSettingRepository(VOLContext dbContext)
|
||||
: base(dbContext)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public static IClassroomSettingRepository Instance
|
||||
{
|
||||
get { return AutofacContainerModule.GetService<IClassroomSettingRepository>(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
31
VOL.Ai/Repositories/ClassroomStageRepository.cs
Normal file
31
VOL.Ai/Repositories/ClassroomStageRepository.cs
Normal file
@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using VOL.Ai.IRepositories;
|
||||
using VOL.Business.IRepositories;
|
||||
using VOL.Core.BaseProvider;
|
||||
using VOL.Core.EFDbContext;
|
||||
using VOL.Core.Extensions.AutofacManager;
|
||||
using VOL.Entity.DomainModels;
|
||||
|
||||
namespace VOL.Ai.Repositories
|
||||
{
|
||||
/// <summary>
|
||||
/// Ai课堂阶段
|
||||
/// </summary>
|
||||
public partial class ClassroomStageRepository : RepositoryBase<Ai_ClassroomStage>, IClassroomStageRepository
|
||||
{
|
||||
public ClassroomStageRepository(VOLContext dbContext)
|
||||
: base(dbContext)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public static IClassroomStageRepository Instance
|
||||
{
|
||||
get { return AutofacContainerModule.GetService<IClassroomStageRepository>(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -22,6 +22,7 @@ using Microsoft.AspNetCore.Http;
|
||||
using OfficeOpenXml.FormulaParsing.Excel.Functions.DateTime;
|
||||
using System.Collections.Concurrent;
|
||||
using VOL.Core.Services;
|
||||
using VOL.Model.Training.Response;
|
||||
|
||||
namespace VOL.Ai.Services
|
||||
{
|
||||
@ -78,6 +79,7 @@ namespace VOL.Ai.Services
|
||||
_fastJumpRopeDataRepository = fastJumpRopeDataRepository;
|
||||
}
|
||||
|
||||
#region New
|
||||
public async Task<Ai_DeviceDto> Ai_DeviceInfo(AiRequestDto paramDto)
|
||||
{
|
||||
var res = await (
|
||||
@ -1200,8 +1202,12 @@ namespace VOL.Ai.Services
|
||||
return res;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region 2.0 接口
|
||||
|
||||
/// <summary>
|
||||
/// Ai一体机扫描那登录轮询
|
||||
/// Ai一体机扫描登录轮询
|
||||
/// </summary>
|
||||
/// <param name="paramDto"></param>
|
||||
/// <returns></returns>
|
||||
@ -1259,5 +1265,47 @@ namespace VOL.Ai.Services
|
||||
_scanCodeLoginRepository.Delete(teacher);
|
||||
return await _teacherRepository.SaveChangesAsync() > 0;
|
||||
}
|
||||
|
||||
public Task<Ai_TeacherFaceInfo> Login(Ai_LoginRequest paramDto)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<PageDataDto<Ai_ClassRoomRecordPageListDto>> ClassRoomRecordPageList(ClassRoomRecordPageListRequest paramDto)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<List<ClassroomStageDto>> ClassroomStagePageList(Ai_Request paramDto)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<bool> AddClassroomSetting(AddClassroomSettingRequest paramDto)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<bool> UpdateClassroomSetting(UpdateClassroomSettingRequest paramDto)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<Ai_HeartRateReportDto> HeartRateReport(HeartRateReportRequest paramDto)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<GetStudentClassReportDetailsModel> StudentHeartRateReport(GetStudentClassReportDetailsDto paramDto)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<Ai_JumpRopeReportDto> JumpRopeReport(HeartRateReportRequest paramDto)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
||||
7446
VOL.Core/Migrations/20250708062828_20250708v1.Designer.cs
generated
Normal file
7446
VOL.Core/Migrations/20250708062828_20250708v1.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
36
VOL.Core/Migrations/20250708062828_20250708v1.cs
Normal file
36
VOL.Core/Migrations/20250708062828_20250708v1.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace VOL.Core.Migrations
|
||||
{
|
||||
public partial class _20250708v1 : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Ai_ScanCodeLogin",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false, comment: "Id")
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
Code = table.Column<string>(type: "nvarchar(100)", nullable: true, comment: "AI设备的唯一编码"),
|
||||
SchoolCode = table.Column<string>(type: "nvarchar(100)", nullable: true, comment: "学校编号"),
|
||||
TeacherId = table.Column<int>(type: "int", nullable: false, comment: "老师Id"),
|
||||
TeacherPhoneNo = table.Column<string>(type: "nvarchar(20)", nullable: true, comment: "老师联系方式"),
|
||||
CreateDate = table.Column<DateTime>(type: "datetime", nullable: true, comment: "创建时间")
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Ai_ScanCodeLogin", x => x.Id);
|
||||
});
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropTable(
|
||||
name: "Ai_ScanCodeLogin");
|
||||
}
|
||||
}
|
||||
}
|
||||
7498
VOL.Core/Migrations/20250709031331_20250709v1.Designer.cs
generated
Normal file
7498
VOL.Core/Migrations/20250709031331_20250709v1.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
62
VOL.Core/Migrations/20250709031331_20250709v1.cs
Normal file
62
VOL.Core/Migrations/20250709031331_20250709v1.cs
Normal file
@ -0,0 +1,62 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace VOL.Core.Migrations
|
||||
{
|
||||
public partial class _20250709v1 : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<int>(
|
||||
name: "ClassroomStageId",
|
||||
table: "Ai_ClassRoomRecord",
|
||||
type: "int",
|
||||
nullable: false,
|
||||
defaultValue: 0,
|
||||
comment: "阶段Id");
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Ai_ClassroomSetting",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false, comment: "Id")
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
ClassRoomRecordId = table.Column<int>(type: "int", nullable: false, comment: "课堂记录Id"),
|
||||
ClassroomStageId = table.Column<int>(type: "int", nullable: false, comment: "阶段Id"),
|
||||
Duration = table.Column<int>(type: "int", nullable: false, comment: "时长"),
|
||||
Density = table.Column<int>(type: "int", nullable: false, comment: "密度")
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Ai_ClassroomSetting", x => x.Id);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Ai_ClassroomStage",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false, comment: "Id")
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
Name = table.Column<string>(type: "nvarchar(200)", nullable: true, comment: "名称")
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Ai_ClassroomStage", x => x.Id);
|
||||
});
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropTable(
|
||||
name: "Ai_ClassroomSetting");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Ai_ClassroomStage");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "ClassroomStageId",
|
||||
table: "Ai_ClassRoomRecord");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -205,6 +205,10 @@ namespace VOL.Core.Migrations
|
||||
.HasColumnType("nvarchar(100)")
|
||||
.HasComment("班级名称");
|
||||
|
||||
b.Property<int>("ClassroomStageId")
|
||||
.HasColumnType("int")
|
||||
.HasComment("阶段Id");
|
||||
|
||||
b.Property<string>("Code")
|
||||
.HasColumnType("nvarchar(100)")
|
||||
.HasComment("AI设备的唯一编码");
|
||||
@ -278,6 +282,54 @@ namespace VOL.Core.Migrations
|
||||
b.ToTable("Ai_ClassRoomRecord");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("VOL.Entity.DomainModels.Ai_ClassroomSetting", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.HasComment("Id");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||
|
||||
b.Property<int>("ClassRoomRecordId")
|
||||
.HasColumnType("int")
|
||||
.HasComment("课堂记录Id");
|
||||
|
||||
b.Property<int>("ClassroomStageId")
|
||||
.HasColumnType("int")
|
||||
.HasComment("阶段Id");
|
||||
|
||||
b.Property<int>("Density")
|
||||
.HasColumnType("int")
|
||||
.HasComment("密度");
|
||||
|
||||
b.Property<int>("Duration")
|
||||
.HasColumnType("int")
|
||||
.HasComment("时长");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Ai_ClassroomSetting");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("VOL.Entity.DomainModels.Ai_ClassroomStage", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.HasComment("Id");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("Name")
|
||||
.HasColumnType("nvarchar(200)")
|
||||
.HasComment("名称");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Ai_ClassroomStage");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("VOL.Entity.DomainModels.Ai_ClassroomStudentRecord", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
@ -836,6 +888,40 @@ namespace VOL.Core.Migrations
|
||||
b.ToTable("Ai_ModeAssocModule");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("VOL.Entity.DomainModels.Ai_ScanCodeLogin", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.HasComment("Id");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("Code")
|
||||
.HasColumnType("nvarchar(100)")
|
||||
.HasComment("AI设备的唯一编码");
|
||||
|
||||
b.Property<DateTime?>("CreateDate")
|
||||
.HasColumnType("datetime")
|
||||
.HasComment("创建时间");
|
||||
|
||||
b.Property<string>("SchoolCode")
|
||||
.HasColumnType("nvarchar(100)")
|
||||
.HasComment("学校编号");
|
||||
|
||||
b.Property<int>("TeacherId")
|
||||
.HasColumnType("int")
|
||||
.HasComment("老师Id");
|
||||
|
||||
b.Property<string>("TeacherPhoneNo")
|
||||
.HasColumnType("nvarchar(20)")
|
||||
.HasComment("老师联系方式");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Ai_ScanCodeLogin");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("VOL.Entity.DomainModels.Ai_Special", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
|
||||
@ -45,6 +45,14 @@ namespace VOL.Entity.DomainModels
|
||||
[Column(TypeName = "nvarchar(200)")]
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 阶段Id
|
||||
/// </summary>
|
||||
[Display(Name = "阶段Id")]
|
||||
[Comment("阶段Id")]
|
||||
[Column(TypeName = "int")]
|
||||
public int ClassroomStageId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 年级编号
|
||||
/// </summary>
|
||||
|
||||
57
VOL.Entity/DomainModels/Ai/Ai_ClassroomSetting.cs
Normal file
57
VOL.Entity/DomainModels/Ai/Ai_ClassroomSetting.cs
Normal file
@ -0,0 +1,57 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using VOL.Entity.Enum;
|
||||
using VOL.Entity.SystemModels;
|
||||
|
||||
namespace VOL.Entity.DomainModels
|
||||
{
|
||||
[Table("Ai_ClassroomSetting")]
|
||||
[Entity(TableCnName = "Ai课堂设置表", TableName = "Ai_ClassroomSetting")]
|
||||
public class Ai_ClassroomSetting : BaseEntity
|
||||
{
|
||||
[Key]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
[Display(Description = "主键Id")]
|
||||
[Comment("Id")]
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 课堂记录Id
|
||||
/// </summary>
|
||||
[Display(Name = "课堂记录Id")]
|
||||
[Comment("课堂记录Id")]
|
||||
[Column(TypeName = "int")]
|
||||
public int ClassRoomRecordId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 阶段Id
|
||||
/// </summary>
|
||||
[Display(Name = "阶段Id")]
|
||||
[Comment("阶段Id")]
|
||||
[Column(TypeName = "int")]
|
||||
public int ClassroomStageId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 时长
|
||||
/// </summary>
|
||||
[Display(Name = "时长")]
|
||||
[Comment("时长")]
|
||||
[Column(TypeName = "int")]
|
||||
public int Duration { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 密度
|
||||
/// </summary>
|
||||
[Display(Name = "密度")]
|
||||
[Comment("密度")]
|
||||
[Column(TypeName = "int")]
|
||||
public int Density { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
32
VOL.Entity/DomainModels/Ai/Ai_ClassroomStage.cs
Normal file
32
VOL.Entity/DomainModels/Ai/Ai_ClassroomStage.cs
Normal file
@ -0,0 +1,32 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using VOL.Entity.Enum;
|
||||
using VOL.Entity.SystemModels;
|
||||
|
||||
namespace VOL.Entity.DomainModels
|
||||
{
|
||||
[Table("Ai_ClassroomStage")]
|
||||
[Entity(TableCnName = "Ai课堂阶段表", TableName = "Ai_ClassroomStage")]
|
||||
public class Ai_ClassroomStage : BaseEntity
|
||||
{
|
||||
[Key]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
[Display(Description = "主键Id")]
|
||||
[Comment("Id")]
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// </summary>
|
||||
[Display(Name = "名称")]
|
||||
[Comment("名称")]
|
||||
[Column(TypeName = "nvarchar(200)")]
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
||||
49
VOL.Model/Ai/Request/AddClassroomSettingRequest.cs
Normal file
49
VOL.Model/Ai/Request/AddClassroomSettingRequest.cs
Normal file
@ -0,0 +1,49 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VOL.Model.Ai.Request
|
||||
{
|
||||
/// <summary>
|
||||
/// 添加课堂设置
|
||||
/// </summary>
|
||||
public class AddClassroomSettingRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 课堂记录Id
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "课堂Id不能为空")]
|
||||
public int ClassRoomRecordId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 课堂设置列表
|
||||
/// </summary>
|
||||
public List<ClassroomSettingDto> ClassroomSettingList { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取课堂阶段列表
|
||||
/// </summary>
|
||||
public class ClassroomSettingDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 阶段Id
|
||||
/// </summary>
|
||||
public int ClassroomStageId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 时长
|
||||
/// </summary>
|
||||
public int Duration { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 密度
|
||||
/// </summary>
|
||||
public int Density { get; set; }
|
||||
}
|
||||
}
|
||||
24
VOL.Model/Ai/Request/Ai_LoginRequest.cs
Normal file
24
VOL.Model/Ai/Request/Ai_LoginRequest.cs
Normal file
@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VOL.Model.Ai.Request
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户名密码登录
|
||||
/// </summary>
|
||||
public class Ai_LoginRequest: Ai_Request
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户名
|
||||
/// </summary>
|
||||
public string UserName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 密码
|
||||
/// </summary>
|
||||
public string Password { get; set; }
|
||||
}
|
||||
}
|
||||
30
VOL.Model/Ai/Request/ClassRoomRecordPageListRequest.cs
Normal file
30
VOL.Model/Ai/Request/ClassRoomRecordPageListRequest.cs
Normal file
@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VOL.Model.Ai.Request
|
||||
{
|
||||
/// <summary>
|
||||
/// 课堂记录分页列表请求参数
|
||||
/// </summary>
|
||||
public class ClassRoomRecordPageListRequest : PageDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 学校Code
|
||||
/// </summary>
|
||||
public string SchoolCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// AI设备的唯一编码
|
||||
/// </summary>
|
||||
public string Code { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 教师Id
|
||||
/// </summary>
|
||||
public int TeacherId { get; set; }
|
||||
}
|
||||
}
|
||||
25
VOL.Model/Ai/Request/ClassroomStageDto.cs
Normal file
25
VOL.Model/Ai/Request/ClassroomStageDto.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VOL.Model.Ai.Request
|
||||
{
|
||||
/// <summary>
|
||||
/// 课堂阶段
|
||||
/// </summary>
|
||||
public class ClassroomStageDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 阶段Id
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 阶段名称
|
||||
/// </summary>
|
||||
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
||||
19
VOL.Model/Ai/Request/HeartRateReportRequest.cs
Normal file
19
VOL.Model/Ai/Request/HeartRateReportRequest.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VOL.Model.Ai.Request
|
||||
{
|
||||
/// <summary>
|
||||
/// 心率报告请求
|
||||
/// </summary>
|
||||
public class HeartRateReportRequest : Ai_Request
|
||||
{
|
||||
/// <summary>
|
||||
/// 课堂记录Id
|
||||
/// </summary>
|
||||
public int ClassRoomRecordId { get; set; }
|
||||
}
|
||||
}
|
||||
40
VOL.Model/Ai/Request/UpdateClassroomSettingRequest.cs
Normal file
40
VOL.Model/Ai/Request/UpdateClassroomSettingRequest.cs
Normal file
@ -0,0 +1,40 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
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 VOL.Model.Ai.Request
|
||||
{
|
||||
/// <summary>
|
||||
/// 修改课堂设置
|
||||
/// </summary>
|
||||
public class UpdateClassroomSettingRequest
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 课堂记录Id
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "课堂Id不能为空")]
|
||||
public int ClassRoomRecordId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 阶段Id
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "阶段Id不能为空")]
|
||||
public int ClassroomStageId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 时长
|
||||
/// </summary>
|
||||
public int Duration { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 密度
|
||||
/// </summary>
|
||||
public int Density { get; set; }
|
||||
}
|
||||
}
|
||||
@ -1,232 +0,0 @@
|
||||
# 如果要从更高级别的目录继承 .editorconfig 设置,请删除以下行
|
||||
root = true
|
||||
|
||||
# c# 文件
|
||||
[*.cs]
|
||||
|
||||
#### Core EditorConfig 选项 ####
|
||||
|
||||
# 缩进和间距
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
tab_width = 4
|
||||
|
||||
# 新行首选项
|
||||
end_of_line = crlf
|
||||
insert_final_newline = false
|
||||
|
||||
#### .NET 编码约定 ####
|
||||
|
||||
# 组织 Using
|
||||
dotnet_separate_import_directive_groups = false
|
||||
dotnet_sort_system_directives_first = false
|
||||
file_header_template = unset
|
||||
|
||||
# this. 和 Me. 首选项
|
||||
dotnet_style_qualification_for_event = false
|
||||
dotnet_style_qualification_for_field = false
|
||||
dotnet_style_qualification_for_method = false
|
||||
dotnet_style_qualification_for_property = false
|
||||
|
||||
# 语言关键字与 bcl 类型首选项
|
||||
dotnet_style_predefined_type_for_locals_parameters_members = true
|
||||
dotnet_style_predefined_type_for_member_access = true
|
||||
|
||||
# 括号首选项
|
||||
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
|
||||
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity
|
||||
dotnet_style_parentheses_in_other_operators = never_if_unnecessary
|
||||
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity
|
||||
|
||||
# 修饰符首选项
|
||||
dotnet_style_require_accessibility_modifiers = for_non_interface_members
|
||||
|
||||
# 表达式级首选项
|
||||
dotnet_style_coalesce_expression = true
|
||||
dotnet_style_collection_initializer = true
|
||||
dotnet_style_explicit_tuple_names = true
|
||||
dotnet_style_namespace_match_folder = true
|
||||
dotnet_style_null_propagation = true
|
||||
dotnet_style_object_initializer = true
|
||||
dotnet_style_operator_placement_when_wrapping = beginning_of_line
|
||||
dotnet_style_prefer_auto_properties = true
|
||||
dotnet_style_prefer_collection_expression = when_types_loosely_match
|
||||
dotnet_style_prefer_compound_assignment = true
|
||||
dotnet_style_prefer_conditional_expression_over_assignment = true
|
||||
dotnet_style_prefer_conditional_expression_over_return = true
|
||||
dotnet_style_prefer_foreach_explicit_cast_in_source = when_strongly_typed
|
||||
dotnet_style_prefer_inferred_anonymous_type_member_names = true
|
||||
dotnet_style_prefer_inferred_tuple_names = true
|
||||
dotnet_style_prefer_is_null_check_over_reference_equality_method = true
|
||||
dotnet_style_prefer_simplified_boolean_expressions = true
|
||||
dotnet_style_prefer_simplified_interpolation = true
|
||||
|
||||
# 字段首选项
|
||||
dotnet_style_readonly_field = true
|
||||
|
||||
# 参数首选项
|
||||
dotnet_code_quality_unused_parameters = all
|
||||
|
||||
# 禁止显示首选项
|
||||
dotnet_remove_unnecessary_suppression_exclusions = none
|
||||
|
||||
# 新行首选项
|
||||
dotnet_style_allow_multiple_blank_lines_experimental = true
|
||||
dotnet_style_allow_statement_immediately_after_block_experimental = true
|
||||
|
||||
#### c# 编码约定 ####
|
||||
|
||||
# var 首选项
|
||||
csharp_style_var_elsewhere = false
|
||||
csharp_style_var_for_built_in_types = false
|
||||
csharp_style_var_when_type_is_apparent = false
|
||||
|
||||
# Expression-bodied 成员
|
||||
csharp_style_expression_bodied_accessors = true
|
||||
csharp_style_expression_bodied_constructors = false
|
||||
csharp_style_expression_bodied_indexers = true
|
||||
csharp_style_expression_bodied_lambdas = true
|
||||
csharp_style_expression_bodied_local_functions = false
|
||||
csharp_style_expression_bodied_methods = false
|
||||
csharp_style_expression_bodied_operators = false
|
||||
csharp_style_expression_bodied_properties = true
|
||||
|
||||
# 模式匹配首选项
|
||||
csharp_style_pattern_matching_over_as_with_null_check = true
|
||||
csharp_style_pattern_matching_over_is_with_cast_check = true
|
||||
csharp_style_prefer_extended_property_pattern = true
|
||||
csharp_style_prefer_not_pattern = true
|
||||
csharp_style_prefer_pattern_matching = true
|
||||
csharp_style_prefer_switch_expression = true
|
||||
|
||||
# Null 检查首选项
|
||||
csharp_style_conditional_delegate_call = true
|
||||
|
||||
# 修饰符首选项
|
||||
csharp_prefer_static_anonymous_function = true
|
||||
csharp_prefer_static_local_function = true
|
||||
csharp_preferred_modifier_order = public,private,protected,internal,file,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,required,volatile,async
|
||||
csharp_style_prefer_readonly_struct = true
|
||||
csharp_style_prefer_readonly_struct_member = true
|
||||
|
||||
# 代码块首选项
|
||||
csharp_prefer_braces = true
|
||||
csharp_prefer_simple_using_statement = true
|
||||
csharp_style_namespace_declarations = block_scoped
|
||||
csharp_style_prefer_method_group_conversion = true
|
||||
csharp_style_prefer_primary_constructors = true
|
||||
csharp_style_prefer_top_level_statements = true
|
||||
|
||||
# 表达式级首选项
|
||||
csharp_prefer_simple_default_expression = true
|
||||
csharp_style_deconstructed_variable_declaration = true
|
||||
csharp_style_implicit_object_creation_when_type_is_apparent = true
|
||||
csharp_style_inlined_variable_declaration = true
|
||||
csharp_style_prefer_index_operator = true
|
||||
csharp_style_prefer_local_over_anonymous_function = true
|
||||
csharp_style_prefer_null_check_over_type_check = true
|
||||
csharp_style_prefer_range_operator = true
|
||||
csharp_style_prefer_tuple_swap = true
|
||||
csharp_style_prefer_utf8_string_literals = true
|
||||
csharp_style_throw_expression = true
|
||||
csharp_style_unused_value_assignment_preference = discard_variable
|
||||
csharp_style_unused_value_expression_statement_preference = discard_variable
|
||||
|
||||
# "using" 指令首选项
|
||||
csharp_using_directive_placement = outside_namespace
|
||||
|
||||
# 新行首选项
|
||||
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true
|
||||
csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true
|
||||
csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true
|
||||
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true
|
||||
csharp_style_allow_embedded_statements_on_same_line_experimental = true
|
||||
|
||||
#### C# 格式规则 ####
|
||||
|
||||
# 新行首选项
|
||||
csharp_new_line_before_catch = true
|
||||
csharp_new_line_before_else = true
|
||||
csharp_new_line_before_finally = true
|
||||
csharp_new_line_before_members_in_anonymous_types = true
|
||||
csharp_new_line_before_members_in_object_initializers = true
|
||||
csharp_new_line_before_open_brace = all
|
||||
csharp_new_line_between_query_expression_clauses = true
|
||||
|
||||
# 缩进首选项
|
||||
csharp_indent_block_contents = true
|
||||
csharp_indent_braces = false
|
||||
csharp_indent_case_contents = true
|
||||
csharp_indent_case_contents_when_block = true
|
||||
csharp_indent_labels = one_less_than_current
|
||||
csharp_indent_switch_labels = true
|
||||
|
||||
# 空格键首选项
|
||||
csharp_space_after_cast = false
|
||||
csharp_space_after_colon_in_inheritance_clause = true
|
||||
csharp_space_after_comma = true
|
||||
csharp_space_after_dot = false
|
||||
csharp_space_after_keywords_in_control_flow_statements = true
|
||||
csharp_space_after_semicolon_in_for_statement = true
|
||||
csharp_space_around_binary_operators = before_and_after
|
||||
csharp_space_around_declaration_statements = false
|
||||
csharp_space_before_colon_in_inheritance_clause = true
|
||||
csharp_space_before_comma = false
|
||||
csharp_space_before_dot = false
|
||||
csharp_space_before_open_square_brackets = false
|
||||
csharp_space_before_semicolon_in_for_statement = false
|
||||
csharp_space_between_empty_square_brackets = false
|
||||
csharp_space_between_method_call_empty_parameter_list_parentheses = false
|
||||
csharp_space_between_method_call_name_and_opening_parenthesis = false
|
||||
csharp_space_between_method_call_parameter_list_parentheses = false
|
||||
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
|
||||
csharp_space_between_method_declaration_name_and_open_parenthesis = false
|
||||
csharp_space_between_method_declaration_parameter_list_parentheses = false
|
||||
csharp_space_between_parentheses = false
|
||||
csharp_space_between_square_brackets = false
|
||||
|
||||
# 包装首选项
|
||||
csharp_preserve_single_line_blocks = true
|
||||
csharp_preserve_single_line_statements = true
|
||||
|
||||
#### 命名样式 ####
|
||||
|
||||
# 命名规则
|
||||
|
||||
dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
|
||||
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
|
||||
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
|
||||
|
||||
dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
|
||||
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
|
||||
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
|
||||
|
||||
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
|
||||
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
|
||||
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
|
||||
|
||||
# 符号规范
|
||||
|
||||
dotnet_naming_symbols.interface.applicable_kinds = interface
|
||||
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.interface.required_modifiers =
|
||||
|
||||
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
|
||||
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.types.required_modifiers =
|
||||
|
||||
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
|
||||
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.non_field_members.required_modifiers =
|
||||
|
||||
# 命名样式
|
||||
|
||||
dotnet_naming_style.pascal_case.required_prefix =
|
||||
dotnet_naming_style.pascal_case.required_suffix =
|
||||
dotnet_naming_style.pascal_case.word_separator =
|
||||
dotnet_naming_style.pascal_case.capitalization = pascal_case
|
||||
|
||||
dotnet_naming_style.begins_with_i.required_prefix = I
|
||||
dotnet_naming_style.begins_with_i.required_suffix =
|
||||
dotnet_naming_style.begins_with_i.word_separator =
|
||||
dotnet_naming_style.begins_with_i.capitalization = pascal_case
|
||||
29
VOL.Model/Ai/Response/Ai_ClassRoomRecordPageListDto.cs
Normal file
29
VOL.Model/Ai/Response/Ai_ClassRoomRecordPageListDto.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VOL.Model.Ai.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// 课堂记录分页
|
||||
/// </summary>
|
||||
public class Ai_ClassRoomRecordPageListDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 年级班级名称
|
||||
/// </summary>
|
||||
public string GradeAndClassName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 老师名称
|
||||
/// </summary>
|
||||
public string TeacherName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 开始结束时间
|
||||
/// </summary>
|
||||
public string StartEndTime { get; set; }
|
||||
}
|
||||
}
|
||||
80
VOL.Model/Ai/Response/Ai_HeartRateReportDto.cs
Normal file
80
VOL.Model/Ai/Response/Ai_HeartRateReportDto.cs
Normal file
@ -0,0 +1,80 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using VOL.Model.Norm.Response;
|
||||
|
||||
namespace VOL.Model.Ai.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// 心率报告
|
||||
/// </summary>
|
||||
public class Ai_HeartRateReportDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 课堂记录名称
|
||||
/// </summary>
|
||||
public string ClassRoomRecordName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 年级-班级
|
||||
/// </summary>
|
||||
public string GradeAndClass { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///教师姓名
|
||||
/// </summary>
|
||||
public string TeacherName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 课程起止时间
|
||||
/// </summary>
|
||||
public string StartingEndingTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 参与人数
|
||||
/// </summary>
|
||||
public string PeopleNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 男女生人数
|
||||
/// </summary>
|
||||
public string PeopleNumberBySex { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 平均心率
|
||||
/// </summary>
|
||||
public string AvgHR { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 中高强度达标人数
|
||||
/// </summary>
|
||||
public string HighIntensity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 运动密度
|
||||
/// </summary>
|
||||
public string Density { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 平均消耗
|
||||
/// </summary>
|
||||
public string Consumption { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 学生运动记录
|
||||
/// </summary>
|
||||
public List<StudentTrainingRecordDto> StudentTrainingRecordList { get; set; } = new List<StudentTrainingRecordDto>();
|
||||
|
||||
/// <summary>
|
||||
/// 心率个数
|
||||
/// </summary>
|
||||
public List<SportsProportionData> HeartRateNumber { get; set; } = new List<SportsProportionData>();
|
||||
|
||||
/// <summary>
|
||||
/// 心率变化趋势
|
||||
/// </summary>
|
||||
public List<SportsProportionData> HeartRateTrend { get; set; } = new List<SportsProportionData>();
|
||||
}
|
||||
}
|
||||
64
VOL.Model/Ai/Response/Ai_JumpRopeReportDto.cs
Normal file
64
VOL.Model/Ai/Response/Ai_JumpRopeReportDto.cs
Normal file
@ -0,0 +1,64 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
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 VOL.Model.Ai.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// 跳绳报告
|
||||
/// </summary>
|
||||
public class Ai_JumpRopeReportDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 模型类型
|
||||
/// </summary>
|
||||
public int ModelType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 模型名称
|
||||
/// </summary>
|
||||
public string ModelName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///运动时长/分钟
|
||||
/// </summary>
|
||||
public int MotionDuration { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 学生人数
|
||||
/// </summary>
|
||||
public int StudentCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 学生列表
|
||||
/// </summary>
|
||||
public List<Ai_StudentJumpRopeReportListDto> StudentList { get; set; }
|
||||
}
|
||||
public class Ai_StudentJumpRopeReportListDto
|
||||
{
|
||||
/// <summary>
|
||||
///学号
|
||||
/// </summary>
|
||||
public string StudentNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///姓名
|
||||
/// </summary>
|
||||
public string StudentName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排行
|
||||
/// </summary>
|
||||
public int Ranking { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///正确个数
|
||||
/// </summary>
|
||||
public int? JumpValue { get; set; }
|
||||
}
|
||||
}
|
||||
@ -104,5 +104,10 @@ namespace VOL.Model.Ai
|
||||
///正确个数
|
||||
/// </summary>
|
||||
public int? JumpValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 等级
|
||||
/// </summary>
|
||||
public int Rank { get; set; }
|
||||
}
|
||||
}
|
||||
@ -129,5 +129,10 @@ namespace VOL.Model
|
||||
/// 平均消耗
|
||||
/// </summary>
|
||||
public int Consumption { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 是否达标
|
||||
/// </summary>
|
||||
public bool IsAccreditation { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@ -22,10 +22,6 @@
|
||||
<EditorConfigFiles Remove="C:\Users\TangLong\Desktop\Code\SmartSports\Server\SmartSportsServer\VOL.Model\Ai\Response\.editorconfig" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="Ai\Response\.editorconfig" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EditorConfigFiles Remove="C:\Users\TangLong\Desktop\Code\SmartSports\Server\SmartSportsServer\VOL.Model\Ai\Response\.editorconfig" />
|
||||
</ItemGroup>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user