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.
test/basic_info/vo/StudentPageReqVO.java

46 lines
1.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;
}