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
2 years ago
|
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
|
||
2 years ago
|
public class TeacherOpenCourseStudentSigninLogManualMergeDTO {
|
||
2 years ago
|
|
||
|
/**
|
||
|
* 签到配置
|
||
|
*/
|
||
|
@NotNull(message = "签到配置参数不能为空!")
|
||
2 years ago
|
private TeacherOpenCourseStudentSigninSettingManualDTO signinSetting;
|
||
2 years ago
|
|
||
|
/**
|
||
|
* 签到日志列表
|
||
|
*/
|
||
|
@NotEmpty(message = "签到日志不能为空!")
|
||
2 years ago
|
private List<TeacherOpenCourseStudentSigninLogManualDTO> signinLogList;
|
||
2 years ago
|
|
||
|
}
|