33 lines
530 B
Plaintext
Executable File
33 lines
530 B
Plaintext
Executable File
package test.com.fp.json;
|
|
|
|
import com.fp.dto.hb.HibernateId;
|
|
|
|
public class TestingBeanKey implements HibernateId{
|
|
private String campo1;
|
|
private Long campo2;
|
|
|
|
public TestingBeanKey() {
|
|
}
|
|
|
|
public TestingBeanKey(String campo1, Long campo2) {
|
|
this.campo1 = campo1;
|
|
this.campo2 = campo2;
|
|
}
|
|
|
|
public String getCampo1() {
|
|
return campo1;
|
|
}
|
|
|
|
public Long getCampo2() {
|
|
return campo2;
|
|
}
|
|
|
|
public void setCampo1(String campo1) {
|
|
this.campo1 = campo1;
|
|
}
|
|
|
|
public void setCampo2(Long campo2) {
|
|
this.campo2 = campo2;
|
|
}
|
|
}
|