#목차
- this unordered seed list will be replaced by the toc {:toc}
- QueryDSL로 해방 필드 'samgyeopsal'을 조회하고 싶은데 어떻게 조회할까?
public enum Menu {
SAMGYEOPSAL (12000, "samgyeopsal"),
SHUSI (15000, "shusi"),
}
public class DTO {
private String restaurant;
@Enumerated(EnumType.STRING)
private Menu menu;
}