package com.github.springtestdbunit.entity; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; /** * @author Oleksii Lomako */ @Entity public class OtherSampleEntity { @Id @GeneratedValue private Integer id; @Column private String value; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } @Override public String toString() { return "OtherSampleEntity{" + "id=" + this.id + ", value='" + this.value + '\'' + '}'; } }