lor6 04fa1782a2 reladomo example (#2469)
* reladomo example

* fix formatting

* add plugin versions

* fix closing streams
2017-08-21 20:25:12 +02:00

16 lines
414 B
Java

package com.baeldung.reladomo;
public class Department extends DepartmentAbstract {
public Department() {
super();
// You must not modify this constructor. Mithra calls this internally.
// You can call this constructor. You can also add new constructors.
}
public Department(long id, String name) {
super();
this.setId(id);
this.setName(name);
}
}