26 lines
748 B
Java
26 lines
748 B
Java
package com.nis.web.service;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import com.nis.domain.Page;
|
|
import com.nis.domain.SwaggerLog;
|
|
import com.nis.util.DateUtils;
|
|
import com.nis.web.dao.SwaggerLogDao;
|
|
|
|
@Service
|
|
public class SwaggerLogService extends CrudService<SwaggerLogDao, SwaggerLog> {
|
|
|
|
|
|
public Page<SwaggerLog> findSwaggerLogPage(Page<SwaggerLog> page, SwaggerLog sysLog) {
|
|
// 设置默认时间范围,默认当前月
|
|
if (sysLog.getBeginDate() == null) {
|
|
sysLog.setBeginDate(DateUtils.setDays(DateUtils.parseDate(DateUtils.getDate()), 1));
|
|
}
|
|
if (sysLog.getEndDate() == null) {
|
|
sysLog.setEndDate(DateUtils.addMonths(sysLog.getBeginDate(), 1));
|
|
}
|
|
return super.findPage(page, sysLog);
|
|
}
|
|
|
|
}
|