Hi guys, in this lesson we will create our model class for course, to do it first of all let's create a new package under our main package, our package name will be month. Under model package, we will create a class whose class will have a database table relation. Course glass will be entity Our first field will be ID and ID will be auto incremented generated value. Our second field feel the title. other fields will be category Last fields will be published date to get a setter equals and hashCode methods, we will use Lombok data annotations. Okay, we have just created our model class.
Thank you