查詢時間從前7天到當前時間

ZHOU_VIP發表於2019-04-12
Timestamp bt = cond.getBeginTime();
if(bt == null){
	bt = new Timestamp(System.currentTimeMillis() - 7*24*3600*1000L);
}
Timestamp et = cond.getEndTime();
if(et == null){
	et = new Timestamp(System.currentTimeMillis());//System.currentTimeMillis() + 24*3600*1000L
}

 

相關文章