forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
434 B
22 lines
434 B
package siprp.database.cayenne.objects;
|
|
|
|
import siprp.database.cayenne.objects.auto._TrabalhadoresConsultasDatasEmails;
|
|
|
|
public class TrabalhadoresConsultasDatasEmails extends _TrabalhadoresConsultasDatasEmails {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public String getDataString()
|
|
{
|
|
return getData() == null ? "" : sdf.format( getData() );
|
|
}
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
return getSubject();
|
|
}
|
|
}
|
|
|
|
|
|
|