|
|
|
@ -61,14 +61,11 @@ public class SapBase {
|
|
|
|
|
private String guid = UUID.randomUUID().toString();
|
|
|
|
|
|
|
|
|
|
public String getSynymdTime() {
|
|
|
|
|
SimpleDateFormat format = new SimpleDateFormat("YYYY-MM-DD");
|
|
|
|
|
//format.format(new Date())
|
|
|
|
|
return "";
|
|
|
|
|
return (new SimpleDateFormat("yyyy-MM-dd")).format(new Date());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSynhmsTime() {
|
|
|
|
|
SimpleDateFormat format = new SimpleDateFormat("HH:mm:ss");
|
|
|
|
|
//format.format(new Date())
|
|
|
|
|
return "";
|
|
|
|
|
return format.format(new Date());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|