(Object o)
| 12 | private Date reg_date; |
| 13 | |
| 14 | @Override |
| 15 | public boolean equals(Object o) { |
| 16 | if (this == o) return true; |
| 17 | if (o == null || getClass() != o.getClass()) return false; |
| 18 | BoardDto boardDto = (BoardDto) o; |
| 19 | return Objects.equals(bno, boardDto.bno) && Objects.equals(title, boardDto.title) && Objects.equals(content, boardDto.content) && Objects.equals(writer, boardDto.writer); |
| 20 | } |
| 21 | |
| 22 | @Override |
| 23 | public int hashCode() { |
no outgoing calls