|
|
@ -1,14 +1,14 @@
|
|
|
|
package com.ruoyi.web.core.base;
|
|
|
|
package com.ruoyi.web.core.base;
|
|
|
|
|
|
|
|
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
import org.springframework.beans.propertyeditors.CustomDateEditor;
|
|
|
|
import java.beans.PropertyEditorSupport;
|
|
|
|
import org.springframework.web.bind.WebDataBinder;
|
|
|
|
import org.springframework.web.bind.WebDataBinder;
|
|
|
|
import org.springframework.web.bind.annotation.InitBinder;
|
|
|
|
import org.springframework.web.bind.annotation.InitBinder;
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
import com.ruoyi.common.base.AjaxResult;
|
|
|
|
import com.ruoyi.common.base.AjaxResult;
|
|
|
|
|
|
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
|
|
import com.ruoyi.framework.util.ShiroUtils;
|
|
|
|
import com.ruoyi.framework.util.ShiroUtils;
|
|
|
|
import com.ruoyi.framework.web.page.PageDomain;
|
|
|
|
import com.ruoyi.framework.web.page.PageDomain;
|
|
|
@ -29,9 +29,15 @@ public class BaseController
|
|
|
|
@InitBinder
|
|
|
|
@InitBinder
|
|
|
|
public void initBinder(WebDataBinder binder)
|
|
|
|
public void initBinder(WebDataBinder binder)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
|
// Date 类型转换
|
|
|
|
dateFormat.setLenient(false);
|
|
|
|
binder.registerCustomEditor(Date.class, new PropertyEditorSupport()
|
|
|
|
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public void setAsText(String text)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
setValue(DateUtils.parseDate(text));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|