| | |
| | | // 获取用户信息 |
| | | BaUser user = (BaUser)getCurUser(result); |
| | | if(user!=null && user.id !=null && !StringUtils.isNullOrEmpty(user.name)){ |
| | | Long operator = user.id; |
| | | // 获取方法的中文描述 |
| | | MethodSignature sign = (MethodSignature) joinPoint.getSignature(); |
| | | Log logDesc = sign.getMethod().getAnnotation(Log.class); |
| | |
| | | // 获取IP地址 |
| | | String ip = getRemoteHost(); |
| | | // 记录日志 |
| | | logSv.save(operator, operationName,ip,result.getCode(),result.getMsg()); |
| | | logSv.save(user.id,user.name, operationName,ip,result.getCode(),result.getMsg()); |
| | | } |
| | | }catch (Exception e){ |
| | | log.error("记录日志异常:"+e.getMessage()); |
| | |
| | | @Autowired |
| | | private BaLogMapper dao; |
| | | |
| | | public void save(long operator, String operation,String ip,String code,String msg) { |
| | | public void save(long operator,String operatorName, String operation,String ip,String code,String msg) { |
| | | BaLog log = new BaLog(); |
| | | log.userId=operator; |
| | | log.userName=operatorName; |
| | | log.content = operation; |
| | | log.dt = new Date(); |
| | | log.ip = ip; |
| | |
| | | * 用户ID |
| | | */ |
| | | public Long userId; |
| | | /** |
| | | * 用户姓名 |
| | | */ |
| | | public String userName; |
| | | |
| | | /** |
| | | * 日志内容 |
| | |
| | | <!--@Table ba_log--> |
| | | <id column="id" jdbcType="BIGINT" property="id" /> |
| | | <result column="user_id" jdbcType="BIGINT" property="userId" /> |
| | | <result column="user_name" jdbcType="VARCHAR" property="userName" /> |
| | | <result column="content" jdbcType="VARCHAR" property="content" /> |
| | | <result column="ip" jdbcType="VARCHAR" property="ip" /> |
| | | <result column="code" jdbcType="VARCHAR" property="code" /> |
| | |
| | | </resultMap> |
| | | <sql id="Base_Column_List"> |
| | | <!--@mbg.generated--> |
| | | id, user_id, content, dt,ip,code,msg |
| | | id, user_id,user_name, content, dt,ip,code,msg |
| | | </sql> |
| | | <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
| | | <!--@mbg.generated--> |
| | |
| | | </select> |
| | | <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.dy.pmsGlobal.pojoBa.BaLog" useGeneratedKeys="true"> |
| | | <!--@mbg.generated--> |
| | | insert into ba_log (user_id, content, ip,code,msg |
| | | insert into ba_log (user_id,user_name, content, ip,code,msg |
| | | ) |
| | | values (#{userId,jdbcType=BIGINT}, #{content,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR}, |
| | | values (#{userId,jdbcType=BIGINT},#{userName,jdbcType=VARCHAR}, #{content,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR}, |
| | | #{code,jdbcType=VARCHAR},#{msg,jdbcType=VARCHAR} |
| | | ) |
| | | </insert> |
| | |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="userId != null"> |
| | | user_id, |
| | | </if> |
| | | <if test="userName != null"> |
| | | user_name, |
| | | </if> |
| | | <if test="content != null"> |
| | | content, |
| | |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="userId != null"> |
| | | #{userId,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="userName != null"> |
| | | #{userName,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="content != null"> |
| | | #{content,jdbcType=VARCHAR}, |
| | |
| | | <if test="userId != null and userId != ''"> |
| | | user_id = #{userId,jdbcType=BIGINT} and |
| | | </if> |
| | | <if test="userName != null and userName != ''"> |
| | | user_name = #{userName,jdbcType=VARCHAR} and |
| | | </if> |
| | | <if test="content != null and content != '' "> |
| | | content like concat('%', #{content}, '%') and |
| | | </if> |
| | |
| | | <if test="userId != null and userId != ''"> |
| | | user_id = #{userId,jdbcType=BIGINT} and |
| | | </if> |
| | | <if test="userName != null and userName != ''"> |
| | | user_name = #{userName,jdbcType=VARCHAR} and |
| | | </if> |
| | | <if test="content != null and content != '' "> |
| | | content like concat('%', #{content}, '%') and |
| | | </if> |
| | |
| | | } |
| | | |
| | | /** |
| | | * 删除用户信息 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping(path = "delete") |
| | | @SsoPowerAop(power = "10100011") //登录与权限同时验证 |
| | | @Log("删除用户") |
| | | public BaseResponse<Boolean> delete(Long id) { |
| | | int count; |
| | | try { |
| | | BaUser po = new BaUser(); |
| | | po.id = id; |
| | | po.deleted = true; |
| | | count = this.sv.update(po); |
| | | } catch (Exception e) { |
| | | log.error("删除用户异常", e); |
| | | return BaseResponseUtils.buildException(e.getMessage()); |
| | | } |
| | | if (count <= 0) { |
| | | return BaseResponseUtils.buildFail("数据库存储失败"); |
| | | } else { |
| | | return BaseResponseUtils.buildSuccess(true); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 修改密码 |
| | | * @param id 用户ID |
| | | * @return 是否成功 |