1.1.4发版 #165

Merged
wangqiong123 merged 14 commits from dev into prod 2024-06-03 02:27:08 +00:00
Showing only changes of commit 5a264e2ef0 - Show all commits
@@ -19,6 +19,7 @@ import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import java.beans.PropertyEditorSupport;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@@ -83,6 +84,9 @@ public class BaseController
@SuppressWarnings({ "rawtypes", "unchecked" })
protected TableDataInfo getDataTable(List<?> list)
{
if(list == null){
list=new ArrayList<>();
}
TableDataInfo rspData = new TableDataInfo();
rspData.setCode(HttpStatus.SUCCESS);
rspData.setMsg("查询成功");
@@ -112,7 +116,7 @@ public class BaseController
*/
public AjaxResult success(String message)
{
return AjaxResult.success(message);
return AjaxResult .success(message);
}
/**