|
|
package cn.iocoder.yudao.module.zhuguang.controller.admin.basic_info.vo;
|
|
|
|
|
|
import lombok.*;
|
|
|
|
|
|
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 StudentPageReqVO extends PageParam {
|
|
|
|
|
|
@Schema(description = "学生学号")
|
|
|
private String studentNumber;
|
|
|
|
|
|
@Schema(description = "学生姓名", example = "赵六")
|
|
|
private String studentName;
|
|
|
|
|
|
@Schema(description = "学生性别 (M: 男, F: 女)")
|
|
|
private String studentSex;
|
|
|
|
|
|
@Schema(description = "在校状态(1住宿2走读3半走读)")
|
|
|
private Integer schoolStatus;
|
|
|
|
|
|
@Schema(description = "电话号码")
|
|
|
private String phoneNumber;
|
|
|
|
|
|
@Schema(description = "学生宿舍楼")
|
|
|
private String residenceNumber;
|
|
|
|
|
|
@Schema(description = "宿舍房门号")
|
|
|
private String roomNumber;
|
|
|
|
|
|
@Schema(description = "班级ID", example = "4328")
|
|
|
private Long classId;
|
|
|
|
|
|
@Schema(description = "更新时间")
|
|
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
|
private LocalDateTime[] updateTime;
|
|
|
|
|
|
} |