讨论日志分析
parent
689517ec58
commit
685ec4c9e8
@ -0,0 +1,40 @@
|
||||
package com.ibeetl.jlw.entity;
|
||||
|
||||
import com.ibeetl.admin.core.annotation.DictEnum;
|
||||
import com.ibeetl.admin.core.entity.BaseEntity;
|
||||
import com.ibeetl.jlw.enums.ChatLogSendTypeEnum;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 课程开课-互动-评论日志-分析
|
||||
* @author lx
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper=false)
|
||||
public class TeacherOpenCourseChatLogAnalysis extends BaseEntity {
|
||||
|
||||
/**
|
||||
* 发送类型
|
||||
*/
|
||||
@DictEnum
|
||||
private ChatLogSendTypeEnum chatLogSendType;
|
||||
|
||||
/**
|
||||
* 次数
|
||||
*/
|
||||
private Integer typeCount;
|
||||
|
||||
/**
|
||||
* 参与人数
|
||||
*/
|
||||
private Integer peopleCount;
|
||||
|
||||
/**
|
||||
* 平均得分
|
||||
*/
|
||||
private BigDecimal avgScore;
|
||||
|
||||
}
|
Loading…
Reference in New Issue