小程序接口调优

This commit is contained in:
2025-03-06 17:51:11 +08:00
parent 3afe6eada7
commit 18819ad259
7 changed files with 343 additions and 27 deletions
+36 -21
View File
@@ -87,28 +87,43 @@ namespace Model
get;
set;
}
/// <summary>
/// 开始时间
/// </summary>
public DateTime? StartTime
{
get;
set;
}
public int? LearnTime
{
get;
set;
}
public DateTime? EndTime
{
get;
set;
}
{
get;
set;
}
/// <summary>
/// 学习时长(秒)
/// </summary>
public int? LearningTime
{
get;
set;
}
/// <summary>
/// 教材时长(秒)
/// </summary>
public int? AttachTime
{
get;
set;
}
public DateTime? EndTime
{
get;
set;
}
/// <summary>
/// 视频进度(秒)
/// </summary>
public int? VideoProgress
{
get;
set;
}
{
get;
set;
}
}
}
}