BoardDto
페이지 정보
![profile_image](https://dancepkt.cafe24.com/data/member_image/ad/admin.gif?1630310007)
본문
package web.dto;
import java.time.LocalDateTime;
import java.util.List;
import lombok.Data;
@Data
public class BoardDto {
private int boardIdx;
private String title;
private String contents;
private int hitCnt;
private String creatorId;
private LocalDateTime createdDatetime;
private String updaterId;
private LocalDateTime updatedDatetime;
private List<BoardFileDto> fileList;
}
- 이전글● 게시판 VIEW - 첨부된 파일 목록 ( 냉무 ) 24.06.11
- 다음글BoardServiceImpl 24.06.11
댓글목록
등록된 댓글이 없습니다.