37 lines
659 B
Java
37 lines
659 B
Java
package com.utopiaindustries.qualitychecker.models;
|
|
|
|
public class ItemUnit {
|
|
private long id;
|
|
private String title;
|
|
|
|
public ItemUnit() {
|
|
}
|
|
|
|
public ItemUnit( String title ) {
|
|
this.title = title;
|
|
}
|
|
|
|
public long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId( long id ) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
public void setTitle( String title ) {
|
|
this.title = title;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "ItemUnit{" +
|
|
"id=" + id +
|
|
", title='" + title + '\'' +
|
|
'}';
|
|
}
|
|
} |