All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.kiryu1223.project.pojos.Department Maven / Gradle / Ivy

The newest version!
package io.github.kiryu1223.project.pojos;

import io.github.kiryu1223.drink.annotation.Column;
import io.github.kiryu1223.drink.annotation.Table;
import lombok.Data;

@Table("departments")
@Data
public class Department
{
    @Column("dept_no")
    private String number;
    @Column("dept_name")
    private String name;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy