项目需求、任务以及模块精简
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
package com.jeesite.modules.biz.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.jeesite.common.config.Global;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@@ -9,7 +11,6 @@ import com.jeesite.common.service.CrudService;
|
||||
import com.jeesite.modules.biz.entity.MyQuickLogin;
|
||||
import com.jeesite.modules.biz.dao.MyQuickLoginDao;
|
||||
import com.jeesite.common.service.ServiceException;
|
||||
import com.jeesite.common.config.Global;
|
||||
import com.jeesite.common.validator.ValidatorUtils;
|
||||
import com.jeesite.common.utils.excel.ExcelImport;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
@@ -131,4 +132,4 @@ public class MyQuickLoginService extends CrudService<MyQuickLoginDao, MyQuickLog
|
||||
super.delete(myQuickLogin);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,6 +15,7 @@ import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
import com.jeesite.common.config.Global;
|
||||
import com.jeesite.common.collect.ListUtils;
|
||||
import com.jeesite.common.lang.StringUtils;
|
||||
import com.jeesite.common.entity.Page;
|
||||
import com.jeesite.common.lang.DateUtils;
|
||||
import com.jeesite.common.utils.excel.ExcelExport;
|
||||
@@ -38,7 +39,7 @@ public class MyQuickLoginController extends BaseController {
|
||||
public MyQuickLoginController(MyQuickLoginService myQuickLoginService) {
|
||||
this.myQuickLoginService = myQuickLoginService;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 获取数据
|
||||
*/
|
||||
@@ -46,7 +47,7 @@ public class MyQuickLoginController extends BaseController {
|
||||
public MyQuickLogin get(String quickId, boolean isNewRecord) {
|
||||
return myQuickLoginService.get(quickId, isNewRecord);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 查询列表
|
||||
*/
|
||||
@@ -56,7 +57,7 @@ public class MyQuickLoginController extends BaseController {
|
||||
model.addAttribute("myQuickLogin", myQuickLogin);
|
||||
return "modules/biz/myQuickLoginList";
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 查询列表数据
|
||||
*/
|
||||
@@ -131,7 +132,7 @@ public class MyQuickLoginController extends BaseController {
|
||||
return renderResult(Global.FALSE, "posfull:"+ex.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 删除数据
|
||||
*/
|
||||
@@ -148,5 +149,5 @@ public class MyQuickLoginController extends BaseController {
|
||||
public List<MyQuickLogin> listAll(MyQuickLogin myQuickLogin){
|
||||
return myQuickLoginService.findList(myQuickLogin);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user