Commit 573b966e authored by zhangjianqian's avatar zhangjianqian

去掉默认时间

parent b3c50f3b
......@@ -44,14 +44,6 @@ public class TNfcRecordServiceImpl implements ITNfcRecordService
@Override
public List<TNfcRecord> selectTNfcRecordList(TNfcRecord tNfcRecord)
{
if(tNfcRecord.getStartTime()==null|| tNfcRecord.getStartTime()==""){
Date d = new Date(new Date().getTime()-86400000);
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH;mm:ss");
tNfcRecord.setStartTime(format.format(d));
}
if(tNfcRecord.getEndTime()!=null && tNfcRecord.getEndTime()!=""){
tNfcRecord.setEndTime(tNfcRecord.getEndTime()+" 23:59:59");
}
return tNfcRecordMapper.selectTNfcRecordList(tNfcRecord);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment