重构中

This commit is contained in:
zhujj 2018-12-06 09:30:25 +08:00
parent 361361e4c0
commit a06c9fd6ba
1 changed files with 8 additions and 3 deletions

View File

@ -7,20 +7,25 @@ import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.framework.web.util.ShiroUtils;
import com.ruoyi.framework.web.page.TableDataInfo;
import com.ruoyi.system.domain.SysUser;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
import java.beans.PropertyEditorSupport;
import java.util.Date;
import java.util.List;
import java.util.Map;
/**
* web层通用数据处理
*
* @author ruoyi
*/
public class BaseController
{
public class BaseController{
@Autowired
protected HttpServletRequest request;
/**
* 将前台传递过来的日期格式的字符串自动转化为Date类型
*/