65 lines
1.3 KiB
Java
65 lines
1.3 KiB
Java
|
|
package it.acxent.anag;
|
||
|
|
|
||
|
|
import it.acxent.db.ApplParmFull;
|
||
|
|
import it.acxent.db.DBAdapter;
|
||
|
|
|
||
|
|
public class UserCliforCR extends _AnagAdapter {
|
||
|
|
private long id_userClifor;
|
||
|
|
|
||
|
|
private long id_users;
|
||
|
|
|
||
|
|
private long id_clifor;
|
||
|
|
|
||
|
|
private Users users;
|
||
|
|
|
||
|
|
private Clifor clifor;
|
||
|
|
|
||
|
|
public UserCliforCR() {}
|
||
|
|
|
||
|
|
public UserCliforCR(ApplParmFull newApplParmFull) {
|
||
|
|
super(newApplParmFull);
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getId_userClifor() {
|
||
|
|
return this.id_userClifor;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId_userClifor(long id_userClifor) {
|
||
|
|
this.id_userClifor = id_userClifor;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getId_users() {
|
||
|
|
return this.id_users;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId_users(long id_users) {
|
||
|
|
this.id_users = id_users;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getId_clifor() {
|
||
|
|
return this.id_clifor;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId_clifor(long id_clifor) {
|
||
|
|
this.id_clifor = id_clifor;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Users getUsers() {
|
||
|
|
this.users = (Users)getSecondaryObject((DBAdapter)this.users, Users.class, getId_users());
|
||
|
|
return this.users;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setUsers(Users users) {
|
||
|
|
this.users = users;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Clifor getClifor() {
|
||
|
|
this.clifor = (Clifor)getSecondaryObject(this.clifor, Clifor.class,
|
||
|
|
getId_clifor());
|
||
|
|
return this.clifor;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setClifor(Clifor clifor) {
|
||
|
|
this.clifor = clifor;
|
||
|
|
}
|
||
|
|
}
|