Right 도메인 CRUD 구현 [회사일] Right 도메인 CRUD 구현 도메인 클래스부터 화면까지 @Entity(name=”rights”) public class Right { @Id @GeneratedValue(strategy = GenerationType.AUTO) private int id; @Column(length = 100, unique = true) @NotNull(message = “입력해주세요.”) @Size(min = 1,