Commit 296584b6 authored by zengxiaoli@yeah.net's avatar zengxiaoli@yeah.net

新增护理人员初始化密码

parent 0637dab4
...@@ -126,6 +126,7 @@ public class SrvOrganEmpServiceImpl implements SrvOrganEmpService { ...@@ -126,6 +126,7 @@ public class SrvOrganEmpServiceImpl implements SrvOrganEmpService {
// 新增 // 新增
chSrvOrganEmp.setEffTime(new Date()); chSrvOrganEmp.setEffTime(new Date());
chSrvOrganEmp.setIsLock((short) 0); chSrvOrganEmp.setIsLock((short) 0);
chSrvOrganEmp.setEmpPwd("ch123456");
chSrvOrganEmpMapper.insert(chSrvOrganEmp); chSrvOrganEmpMapper.insert(chSrvOrganEmp);
updateAttachs(srvOrganEmpVo, chSrvOrganEmp.getEmpId()); updateAttachs(srvOrganEmpVo, chSrvOrganEmp.getEmpId());
......
...@@ -173,5 +173,11 @@ public class ChSrvOrganEmp implements Serializable { ...@@ -173,5 +173,11 @@ public class ChSrvOrganEmp implements Serializable {
*/ */
private Short whiteList; private Short whiteList;
/**
* 员工密码
*/
private String empPwd;
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment