AdjustStudentBedDto.java 508 B

12345678910111213141516171819202122232425
  1. package com.xjrsoft.module.room.dto;
  2. import com.xjrsoft.common.page.PageInput;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. /**
  7. * @title: 寝室床位分页查询入参
  8. * @Author dzx
  9. * @Date: 2023-12-27
  10. * @Version 1.0
  11. */
  12. @Data
  13. @EqualsAndHashCode(callSuper = false)
  14. public class AdjustStudentBedDto extends PageInput {
  15. @ApiModelProperty("床位id")
  16. public Long bedId;
  17. @ApiModelProperty("学生userId")
  18. public Long studentUserId;
  19. }