www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -0,0 +1,53 @@
|
|||
package it.acxent.art;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
public class RepartoCR extends CRAdapter {
|
||||
private long id_reparto;
|
||||
|
||||
private String descrizione;
|
||||
|
||||
private long lastUpdId_user;
|
||||
|
||||
private Timestamp lastUpdTmst;
|
||||
|
||||
public RepartoCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public RepartoCR() {}
|
||||
|
||||
public void setId_reparto(long newId_reparto) {
|
||||
this.id_reparto = newId_reparto;
|
||||
}
|
||||
|
||||
public void setDescrizione(String newDescrizione_it) {
|
||||
this.descrizione = newDescrizione_it;
|
||||
}
|
||||
|
||||
public void setLastUpdId_user(long newLastUpdId_user) {
|
||||
this.lastUpdId_user = newLastUpdId_user;
|
||||
}
|
||||
|
||||
public void setLastUpdTmst(Timestamp newLastUpdTmst) {
|
||||
this.lastUpdTmst = newLastUpdTmst;
|
||||
}
|
||||
|
||||
public long getId_reparto() {
|
||||
return this.id_reparto;
|
||||
}
|
||||
|
||||
public String getDescrizione() {
|
||||
return (this.descrizione == null) ? "" : this.descrizione.trim();
|
||||
}
|
||||
|
||||
public long getLastUpdId_user() {
|
||||
return this.lastUpdId_user;
|
||||
}
|
||||
|
||||
public Timestamp getLastUpdTmst() {
|
||||
return this.lastUpdTmst;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue