Commit c2370434 authored by 吴卿华's avatar 吴卿华

系统用户与员工信息合并

parent 2876ff16
...@@ -3,12 +3,16 @@ package com.zehong.web.controller.safetyManagement; ...@@ -3,12 +3,16 @@ package com.zehong.web.controller.safetyManagement;
import java.util.List; import java.util.List;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import com.zehong.common.constant.UserConstants;
import com.zehong.common.core.domain.entity.SysRole; import com.zehong.common.core.domain.entity.SysRole;
import com.zehong.common.core.domain.entity.SysUser; import com.zehong.common.core.domain.entity.SysUser;
import com.zehong.common.utils.SecurityUtils;
import com.zehong.common.utils.StringUtils;
import com.zehong.system.domain.form.TStaffForm; import com.zehong.system.domain.form.TStaffForm;
import com.zehong.system.domain.vo.TStaffVo; import com.zehong.system.domain.vo.TStaffVo;
import com.zehong.system.service.ISysPostService; import com.zehong.system.service.ISysPostService;
import com.zehong.system.service.ISysRoleService; import com.zehong.system.service.ISysRoleService;
import com.zehong.system.service.ISysUserService;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
...@@ -47,6 +51,9 @@ public class TStaffController extends BaseController ...@@ -47,6 +51,9 @@ public class TStaffController extends BaseController
@Autowired @Autowired
private ISysPostService postService; private ISysPostService postService;
@Autowired
private ISysUserService userService;
/** /**
* 查询员工信息管理列表 * 查询员工信息管理列表
*/ */
...@@ -91,6 +98,16 @@ public class TStaffController extends BaseController ...@@ -91,6 +98,16 @@ public class TStaffController extends BaseController
@PostMapping @PostMapping
public AjaxResult add(@RequestBody TStaff tStaff) public AjaxResult add(@RequestBody TStaff tStaff)
{ {
SysUser user=new SysUser();
user.setPhonenumber(tStaff.getPhonenumber());
if (UserConstants.NOT_UNIQUE.equals(userService.checkUserNameUnique(tStaff.getUserName()))) {
return AjaxResult.error("新增用户'" + tStaff.getUserName() + "'失败,登录账号已存在");
} else if (StringUtils.isNotEmpty(tStaff.getPhonenumber())
&& UserConstants.NOT_UNIQUE.equals(userService.checkPhoneUnique(user))) {
return AjaxResult.error("新增用户'" + tStaff.getUserName() + "'失败,手机号码已存在");
}
//密码加密
tStaff.setPassword(SecurityUtils.encryptPassword(tStaff.getPassword()));
return toAjax(tStaffService.insertTStaff(tStaff)); return toAjax(tStaffService.insertTStaff(tStaff));
} }
......
...@@ -20,6 +20,12 @@ public class TStaff extends BaseEntity ...@@ -20,6 +20,12 @@ public class TStaff extends BaseEntity
/** 员工id */ /** 员工id */
private Integer staffId; private Integer staffId;
/**用户账号*/
private String userName;
/**用户密码*/
private String password;
/** 姓名 */ /** 姓名 */
@Excel(name = "姓名") @Excel(name = "姓名")
private String staffName; private String staffName;
...@@ -77,6 +83,30 @@ public class TStaff extends BaseEntity ...@@ -77,6 +83,30 @@ public class TStaff extends BaseEntity
@Excel(name = "删除标志", readConverterExp = "0=正常,1删除") @Excel(name = "删除标志", readConverterExp = "0=正常,1删除")
private String isDel; private String isDel;
public static long getSerialVersionUID() {
return serialVersionUID;
}
public void setStaffId(Integer staffId) {
this.staffId = staffId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public void setStaffId(int staffId) public void setStaffId(int staffId)
{ {
this.staffId = staffId; this.staffId = staffId;
...@@ -215,25 +245,24 @@ public class TStaff extends BaseEntity ...@@ -215,25 +245,24 @@ public class TStaff extends BaseEntity
@Override @Override
public String toString() { public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) return "TStaff{" +
.append("staffId", getStaffId()) "staffId=" + staffId +
.append("staffName", getStaffName()) ", userName='" + userName + '\'' +
.append("staffCode", getStaffCode()) ", password='" + password + '\'' +
.append("sex", getSex()) ", staffName='" + staffName + '\'' +
.append("deptId", getDeptId()) ", staffCode='" + staffCode + '\'' +
.append("phonenumber", getPhonenumber()) ", sex='" + sex + '\'' +
.append("postId", getPostId()) ", deptId=" + deptId +
.append("roleId", getRoleId()) ", phonenumber='" + phonenumber + '\'' +
.append("positionalTitles", getPositionalTitles()) ", postId=" + postId +
.append("profession", getProfession()) ", roleId=" + roleId +
.append("specialOperators", getSpecialOperators()) ", positionalTitles='" + positionalTitles + '\'' +
.append("certificateUrl", getCertificateUrl()) ", profession='" + profession + '\'' +
.append("certificateName", getCertificateName()) ", specialOperators='" + specialOperators + '\'' +
.append("effectiveDate", getEffectiveDate()) ", certificateUrl='" + certificateUrl + '\'' +
.append("createTime", getCreateTime()) ", certificateName='" + certificateName + '\'' +
.append("updateTime", getUpdateTime()) ", effectiveDate=" + effectiveDate +
.append("remark", getRemark()) ", isDel='" + isDel + '\'' +
.append("isDel", getIsDel()) '}';
.toString();
} }
} }
...@@ -58,7 +58,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -58,7 +58,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult"> <select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult">
select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_name, d.leader from sys_user u select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_name, d.leader from sys_user u
left join sys_dept d on u.dept_id = d.dept_id left join sys_dept d on u.dept_id = d.dept_id
where u.del_flag = '0' where u.del_flag = '0' and u.user_staff='0'
<if test="userName != null and userName != ''"> <if test="userName != null and userName != ''">
AND u.user_name like concat('%', #{userName}, '%') AND u.user_name like concat('%', #{userName}, '%')
</if> </if>
...@@ -82,6 +82,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -82,6 +82,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</if> </if>
<!-- 数据范围过滤 --> <!-- 数据范围过滤 -->
${params.dataScope} ${params.dataScope}
group by u.user_id desc
</select> </select>
<select id="selectUserByUserName" parameterType="String" resultMap="SysUserResult"> <select id="selectUserByUserName" parameterType="String" resultMap="SysUserResult">
...@@ -108,6 +109,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -108,6 +109,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<insert id="insertUser" parameterType="SysUser" useGeneratedKeys="true" keyProperty="userId"> <insert id="insertUser" parameterType="SysUser" useGeneratedKeys="true" keyProperty="userId">
insert into sys_user( insert into sys_user(
user_staff,
<if test="userId != null and userId != 0">user_id,</if> <if test="userId != null and userId != 0">user_id,</if>
<if test="deptId != null and deptId != 0">dept_id,</if> <if test="deptId != null and deptId != 0">dept_id,</if>
<if test="userName != null and userName != ''">user_name,</if> <if test="userName != null and userName != ''">user_name,</if>
...@@ -122,6 +124,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -122,6 +124,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="remark != null and remark != ''">remark,</if> <if test="remark != null and remark != ''">remark,</if>
create_time create_time
)values( )values(
'0',
<if test="userId != null and userId != ''">#{userId},</if> <if test="userId != null and userId != ''">#{userId},</if>
<if test="deptId != null and deptId != ''">#{deptId},</if> <if test="deptId != null and deptId != ''">#{deptId},</if>
<if test="userName != null and userName != ''">#{userName},</if> <if test="userName != null and userName != ''">#{userName},</if>
......
...@@ -33,17 +33,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -33,17 +33,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</select> </select>
<sql id="selectTStaffVo"> <sql id="selectTStaffVo">
select t.staff_id, t.staff_name, t.staff_code, t.sex, t.dept_id, t.phonenumber, t.post_id, t.role_id, t.positional_titles, t.profession, t.special_operators, t.certificate_url, t.certificate_name, t.effective_date, t.create_time, t.update_time, t.remark, t.is_del, select t.user_id as staff_id, t.staff_name, t.staff_code, t.sex, t.dept_id, t.phonenumber, t.post_id, t.role_id, t.positional_titles, t.profession, t.special_operators, t.certificate_url, t.certificate_name, t.effective_date, t.create_time, t.update_time, t.remark, t.is_del,
d.dept_name, r.role_name, p.post_name d.dept_name, r.role_name, p.post_name
from t_staff t from sys_user t
left join sys_dept d on t.dept_id = d.dept_id left join sys_dept d on t.dept_id = d.dept_id
left join sys_role r on t.role_id = r.role_id left join sys_role r on t.role_id = r.role_id
left join sys_post p on t.post_id = p.post_id left join sys_post p on t.post_id = p.post_id
</sql> </sql>
<select id="selectTStaffList" parameterType="TStaffForm" resultMap="TStaffResult"> <select id="selectTStaffList" parameterType="TStaffForm" resultMap="TStaffResult">
<include refid="selectTStaffVo"/> select t.user_id as staff_id, t.staff_name, t.staff_code, t.sex, t.dept_id, t.phonenumber, t.post_id, t.role_id, t.positional_titles, t.profession, t.special_operators, t.certificate_url, t.certificate_name, t.effective_date, t.create_time, t.update_time, t.remark, t.is_del,
<where> t.is_del = '0' d.dept_name, r.role_name, p.post_name
from sys_user t
left join sys_dept d on t.dept_id = d.dept_id
left join sys_role r on t.role_id = r.role_id
left join sys_post p on t.post_id = p.post_id
<where> t.is_del = '0' and t.user_staff='1'
<if test="staffName != null and staffName != ''"> and t.staff_name like concat('%', #{staffName}, '%')</if> <if test="staffName != null and staffName != ''"> and t.staff_name like concat('%', #{staffName}, '%')</if>
<if test="staffCode != null and staffCode != ''"> and t.staff_code = #{staffCode}</if> <if test="staffCode != null and staffCode != ''"> and t.staff_code = #{staffCode}</if>
<if test="sex != null and sex != ''"> and t.sex = #{sex}</if> <if test="sex != null and sex != ''"> and t.sex = #{sex}</if>
...@@ -62,12 +67,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -62,12 +67,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectTStaffById" parameterType="Long" resultMap="TStaffResult"> <select id="selectTStaffById" parameterType="Long" resultMap="TStaffResult">
<include refid="selectTStaffVo"/> <include refid="selectTStaffVo"/>
where t.staff_id = #{staffId} where t.user_id = #{staffId}
</select> </select>
<insert id="insertTStaff" parameterType="TStaff"> <insert id="insertTStaff" parameterType="TStaff">
insert into t_staff insert into sys_user
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
user_staff,
<if test="password != null">password,</if>
<if test="userName != null">user_name,</if>
<if test="staffName != null">nick_name,</if>
<if test="staffName != null">staff_name,</if> <if test="staffName != null">staff_name,</if>
<if test="staffCode != null">staff_code,</if> <if test="staffCode != null">staff_code,</if>
<if test="sex != null">sex,</if> <if test="sex != null">sex,</if>
...@@ -87,6 +96,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -87,6 +96,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="isDel != null">is_del,</if> <if test="isDel != null">is_del,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
'1',
<if test="password != null">#{password},</if>
<if test="userName != null">#{userName},</if>
<if test="staffName != null">#{staffName},</if>
<if test="staffName != null">#{staffName},</if> <if test="staffName != null">#{staffName},</if>
<if test="staffCode != null">#{staffCode},</if> <if test="staffCode != null">#{staffCode},</if>
<if test="sex != null">#{sex},</if> <if test="sex != null">#{sex},</if>
...@@ -108,7 +121,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -108,7 +121,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</insert> </insert>
<update id="updateTStaff" parameterType="TStaff"> <update id="updateTStaff" parameterType="TStaff">
update t_staff update sys_user
<trim prefix="SET" suffixOverrides=","> <trim prefix="SET" suffixOverrides=",">
<if test="staffName != null">staff_name = #{staffName},</if> <if test="staffName != null">staff_name = #{staffName},</if>
<if test="staffCode != null">staff_code = #{staffCode},</if> <if test="staffCode != null">staff_code = #{staffCode},</if>
...@@ -128,15 +141,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -128,15 +141,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="remark != null">remark = #{remark},</if> <if test="remark != null">remark = #{remark},</if>
<if test="isDel != null">is_del = #{isDel},</if> <if test="isDel != null">is_del = #{isDel},</if>
</trim> </trim>
where staff_id = #{staffId} where user_id = #{staffId}
</update> </update>
<delete id="deleteTStaffById" parameterType="Long"> <delete id="deleteTStaffById" parameterType="Long">
delete from t_staff where staff_id = #{staffId} delete from sys_user where user_id = #{staffId}
</delete> </delete>
<delete id="deleteTStaffByIds" parameterType="String"> <delete id="deleteTStaffByIds" parameterType="String">
delete from t_staff where staff_id in delete from sys_user where user_id in
<foreach item="staffId" collection="array" open="(" separator="," close=")"> <foreach item="staffId" collection="array" open="(" separator="," close=")">
#{staffId} #{staffId}
</foreach> </foreach>
......
...@@ -171,6 +171,18 @@ ...@@ -171,6 +171,18 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row v-if="form.staffName==null">
<el-col :span="11">
<el-form-item label="账号" prop="userName">
<el-input v-model="form.userName" placeholder="请输账号" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="密码" prop="password" label-width="140px">
<el-input v-model="form.password" placeholder="请输入密码" />
</el-form-item>
</el-col>
</el-row>
<el-row> <el-row>
<el-col :span="11"> <el-col :span="11">
<el-form-item label="手机号码" prop="phonenumber"> <el-form-item label="手机号码" prop="phonenumber">
...@@ -356,6 +368,12 @@ export default { ...@@ -356,6 +368,12 @@ export default {
staffName: [ staffName: [
{ required: true, message: "姓名不能为空", trigger: "blur" } { required: true, message: "姓名不能为空", trigger: "blur" }
], ],
userName: [
{ required: true, message: "账号不能为空", trigger: "blur" }
],
password: [
{ required: true, message: "密码不能为空", trigger: "blur" }
],
phonenumber: [ phonenumber: [
{ {
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/, pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
......
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