You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
690 B
Java
34 lines
690 B
Java
package com.ibeetl.jlw.entity;
|
|
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
import javax.validation.constraints.NotNull;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>
|
|
* 手动签到, 打包实体
|
|
* </p>
|
|
*
|
|
* @author mlx
|
|
* @date 2022/10/25
|
|
* @modified
|
|
*/
|
|
@Data
|
|
public class TeacherOpenCourseStudentSigninLogManualMergeDTO {
|
|
|
|
/**
|
|
* 签到配置
|
|
*/
|
|
@NotNull(message = "签到配置参数不能为空!")
|
|
private TeacherOpenCourseStudentSigninSettingManualDTO signinSetting;
|
|
|
|
/**
|
|
* 签到日志列表
|
|
*/
|
|
@NotEmpty(message = "签到日志不能为空!")
|
|
private List<TeacherOpenCourseStudentSigninLogManualDTO> signinLogList;
|
|
|
|
}
|