增加一个节点的全路径字段
parent
86da796cbf
commit
18705f2c1f
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,21 @@
|
||||
package com.ibeetl.jlw.entity.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 功能描述: <br>
|
||||
* 评论日志的分析实体
|
||||
*
|
||||
* @author: mlx
|
||||
* @description:
|
||||
* @date: 2023/1/20 0:18
|
||||
* @version: 1.0
|
||||
*/
|
||||
@Data
|
||||
public class TeacherOpenCourseChatLogAnalysisDTO {
|
||||
|
||||
/**
|
||||
* 开课ID
|
||||
*/
|
||||
private Long teacherOpenCourseId;
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
package com.ibeetl.jlw.entity.vo;
|
||||
|
||||
import com.ibeetl.admin.core.entity.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 功能描述: <br>
|
||||
* 评论日志的分析实体
|
||||
*
|
||||
* @author: mlx
|
||||
* @description:
|
||||
* @date: 2023/1/20 0:18
|
||||
* @version: 1.0
|
||||
*/
|
||||
@Data
|
||||
public class TeacherOpenCourseChatLogAnalysisVO extends BaseEntity {
|
||||
|
||||
/**
|
||||
* 评论次数
|
||||
*/
|
||||
private String chatLogCount;
|
||||
|
||||
/**
|
||||
* 学生提问次数
|
||||
*/
|
||||
private String studentSendCount;
|
||||
|
||||
/**
|
||||
* 教师提问次数
|
||||
*/
|
||||
private String teacherSendCount;
|
||||
}
|
Loading…
Reference in New Issue