| 12345678910111213141516171819 |
- package com.xjrsoft.module.student.dto;
- import com.xjrsoft.common.page.PageInput;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * @title: 助学金申请学生信息分页查询入参
- * @Author devil
- * @Date: 2023-11-29
- * @Version 1.0
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- public class BaseStudentBursariesStudentPageDto extends PageInput {
- }
|