![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbFKMEb%2FbtsHMcRaXL3%2Fg0zEhkirMuhnOL0DI4bXr1%2Fimg.jpg)
Entity Convention@Entity@Comment("상품 카테고리 정보")@Getter@ToString@NoArgsConstructor(access = AccessLevel.PROTECTED)@SQLRestriction("use_flag = 'Y'")public class ProductCategory extends BaseEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Comment("상품 카테고리 정보 IDX") private Long productCategoryId; @Column(nullable = false, length = 100) @Comment("카테고리명") private S..