OrderRateDto.java 874 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.happy.dto;
  2. import com.happy.Model.BookingComment;
  3. import com.happy.Model.FileInfo;
  4. import java.util.List;
  5. public class OrderRateDto {
  6. // ¸½¼þ
  7. private List<FileInfo> fileInfoList;
  8. // ÆÀ¼Û
  9. private BookingComment bookingComment;
  10. public List<FileInfo> getFileInfoList() {
  11. return fileInfoList;
  12. }
  13. public void setFileInfoList(List<FileInfo> fileInfoList) {
  14. this.fileInfoList = fileInfoList;
  15. }
  16. public BookingComment getBookingComment() {
  17. return bookingComment;
  18. }
  19. public void setBookingComment(BookingComment bookingComment) {
  20. this.bookingComment = bookingComment;
  21. }
  22. @Override
  23. public String toString() {
  24. return "OrderRateDto{" +
  25. "fileInfoList=" + fileInfoList +
  26. ", bookingComment=" + bookingComment +
  27. '}';
  28. }
  29. }