You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
package cn.iocoder.yudao.module.zhuguang.controller.admin.basic_info.vo;
|
|
|
|
import lombok.*;
|
|
import java.util.*;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
|
|
@Schema(description = "管理后台 - 老师分页 Request VO")
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@ToString(callSuper = true)
|
|
public class TeacherPageReqVO extends PageParam {
|
|
|
|
@Schema(description = "老师工号")
|
|
private String teacherNumber;
|
|
|
|
@Schema(description = "老师姓名", example = "张三")
|
|
private String teacherName;
|
|
|
|
@Schema(description = "老师性别 (M: 男, F: 女)")
|
|
private String teacherSex;
|
|
|
|
@Schema(description = "老师年龄")
|
|
private Integer teacherAge;
|
|
|
|
@Schema(description = "老师邮箱")
|
|
private String teacherEmail;
|
|
|
|
@Schema(description = "电话号码")
|
|
private String phoneNumber;
|
|
|
|
@Schema(description = "更新时间")
|
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
private LocalDateTime[] updateTime;
|
|
|
|
} |