1.回显部门数据
当对部门进行修改时,应先通过DeptId查找部门数据,将获取到的数据展现在修改页面
查找修改的部门数据
TestDeptService
String deptId="3d00290a-1af0-4c28-853e-29fbf96a2722";
Dept dept =iDeptService.updateDeptById(deptId);
IDeptService
Dept updateDeptById(String deptId);
IDeptServiceimpl
@Override
public Dept updateDeptById(String deptId) {
return iDeptDao.findById(deptId);/*回显*/
}
回显部门sql语句
IDeptDao
Dept findById(String deptId);
IDeptDao.xml
<select id="findById" parameterType="string" resultMap="findOneMap">
select * from pe_dept where dept_id = #{dept_id}
</select>
DeptController
@RequestMapping(path = "/updateUI" ,method = {
RequestMethod.GET,RequestMethod.POST})
public String updateUI(String deptId,Model model){
String companyId="1";//默认公司为1
Dept dept= iDeptService.updateDeptById(deptId);
List<Dept> list=iDeptService.findAll(companyId);//查找所有的公司
model.addAttribute("dept"