RoomQueryRequest.java 624 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.chuanghai.ihotel.controller.request;
  2. import lombok.Data;
  3. import org.springframework.format.annotation.DateTimeFormat;
  4. import javax.validation.constraints.NotNull;
  5. import java.time.LocalDate;
  6. import java.util.List;
  7. /**
  8. * @Author: codingliang
  9. * @Description: 房间查询
  10. * @Date: 2022-07-27 16:59
  11. * @Version: V1.0
  12. **/
  13. @Data
  14. public class RoomQueryRequest {
  15. /**
  16. * 房间号
  17. */
  18. private String roomNo;
  19. /**
  20. * 所处楼栋
  21. */
  22. private String build;
  23. /**
  24. * 所处楼层
  25. */
  26. private String floor;
  27. /**
  28. * 房型id
  29. */
  30. private Long roomTypeId;
  31. }