Compare commits

..

No commits in common. "9948445d7cf25fcb70aa2b10ef626705089940f5" and "0b095805a99b3d73f192b85fe1f48bab6e92fb39" have entirely different histories.

3 changed files with 3 additions and 2 deletions

View File

@ -20,7 +20,6 @@ import com.muyu.system.domain.resp.UserInfoResp;
import com.muyu.system.service.*;
import org.apache.commons.lang3.ArrayUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;

View File

@ -182,11 +182,11 @@ public interface SysUserService extends IService<SysUser> {
*
*
* @param user
*
* @return
*/
public int resetPwd (SysUser user);
/**
*
*

View File

@ -50,6 +50,7 @@ public class SysUserServiceImpl extends ServiceImpl<SysUserMapper, SysUser> impl
private SysUserPostMapper userPostMapper;
@Autowired
private SysConfigService configService;
/**
*
*
@ -332,6 +333,7 @@ public class SysUserServiceImpl extends ServiceImpl<SysUserMapper, SysUser> impl
*
*
* @param user
*
* @return
*/
@Override