huwhois 5 ans auparavant
Parent
commit
2e8a7e89d3

+ 1 - 1
src/main/java/io/renren/modules/app/controller/AppRegisterController.java

@ -60,7 +60,7 @@ public class AppRegisterController {
60 60
        //表单校验
61 61
        ValidatorUtils.validateEntity(user, AddGroup.class);
62 62
63
        userService.saveMember(user);
63
        userService.saveUser(user);
64 64
65 65
        return R.ok();
66 66
    }

+ 6 - 6
src/main/java/io/renren/modules/app/controller/AppTestController.java

@ -30,12 +30,12 @@ import org.springframework.web.bind.annotation.RestController;
30 30
@Api("APP测试接口")
31 31
public class AppTestController {
32 32
33
    @Login
34
    @GetMapping("userInfo")
35
    @ApiOperation("获取用户信息")
36
    public R userInfo(@LoginUser UserEntity user){
37
        return R.ok().put("user", user);
38
    }
33
    // @Login
34
    // @GetMapping("userInfo")
35
    // @ApiOperation("获取用户信息")
36
    // public R userInfo(@LoginUser UserEntity user){
37
    //     return R.ok().put("user", user);
38
    // }
39 39
40 40
    @Login
41 41
    @GetMapping("userId")

+ 20 - 0
src/main/java/io/renren/modules/app/controller/OrderController.java

@ -0,0 +1,20 @@
1
package io.renren.modules.app.controller;
2
3
import io.renren.common.utils.R;
4
import io.renren.modules.app.annotation.Login;
5
import io.renren.modules.app.annotation.LoginUser;
6
import io.renren.modules.app.entity.UserEntity;
7
import io.swagger.annotations.Api;
8
import io.swagger.annotations.ApiOperation;
9
import org.springframework.web.bind.annotation.GetMapping;
10
import org.springframework.web.bind.annotation.RequestAttribute;
11
import org.springframework.web.bind.annotation.RequestMapping;
12
import org.springframework.web.bind.annotation.RestController;
13
14
/**
15
 * OrderController
16
 */
17
public class OrderController {
18
    
19
    
20
}

+ 54 - 0
src/main/java/io/renren/modules/app/controller/UserController.java

@ -0,0 +1,54 @@
1
2
package io.renren.modules.app.controller;
3
4
import io.renren.common.utils.R;
5
import io.renren.modules.app.annotation.Login;
6
import io.renren.modules.app.annotation.LoginUser;
7
import io.renren.modules.app.entity.UserEntity;
8
import io.renren.modules.app.service.UserService;
9
import io.swagger.annotations.Api;
10
import io.swagger.annotations.ApiOperation;
11
12
import java.util.Date;
13
14
import org.springframework.beans.factory.annotation.Autowired;
15
import org.springframework.web.bind.annotation.GetMapping;
16
import org.springframework.web.bind.annotation.PostMapping;
17
import org.springframework.web.bind.annotation.RequestAttribute;
18
import org.springframework.web.bind.annotation.RequestBody;
19
import org.springframework.web.bind.annotation.RequestMapping;
20
import org.springframework.web.bind.annotation.RestController;
21
22
/**
23
 * APP测试接口
24
 *
25
 * @author Mark sunlightcs@gmail.com
26
 */
27
@RestController
28
@RequestMapping("/app/user")
29
@Api("个人中心接口")
30
public class UserController {
31
    @Autowired
32
    private UserService userService;
33
34
    @Login
35
    @GetMapping("/userInfo")
36
    @ApiOperation("获取用户信息")
37
    public R userInfo(@LoginUser UserEntity user){
38
        return R.ok().put("user", user);
39
    }
40
41
    /**
42
     * 修改
43
     */
44
    @Login
45
    @PostMapping("/update")
46
    @ApiOperation("修改")
47
    public R update(@RequestBody UserEntity user){
48
    
49
        user.setModifyTime(new Date());
50
		userService.updateById(user);
51
52
        return R.ok();
53
    }
54
}

+ 80 - 0
src/main/java/io/renren/modules/app/entity/OrderEntity.java

@ -0,0 +1,80 @@
1
package io.renren.modules.app.entity;
2
3
import java.math.BigDecimal;
4
import java.io.Serializable;
5
import java.util.Date;
6
import lombok.Data;
7
8
/**
9
 * 
10
 * 
11
 * @author huwhois
12
 * @email huwhois@163.com
13
 * @date 2020-03-06 11:27:30
14
 */
15
@Data
16
public class OrderEntity implements Serializable {
17
	private static final long serialVersionUID = 1L;
18
19
	/**
20
	 * 缴费信息id
21
	 */
22
	private Long id;
23
	/**
24
	 * 订单编号
25
	 */
26
	private Long orderId;
27
	/**
28
	 * 公司id
29
	 */
30
	private Long companyId;
31
	/**
32
	 * 参会人员id
33
	 */
34
	private Long attenderId;
35
	/**
36
	 * 缴费时间
37
	 */
38
	private Date payTime;
39
	/**
40
	 * 缴费方式
41
	 */
42
	private Integer payType;
43
	/**
44
	 * 缴费项目
45
	 */
46
	private String payOption;
47
	/**
48
	 * 金额
49
	 */
50
	private BigDecimal money;
51
	/**
52
	 * 发票抬头
53
	 */
54
	private String taxTitle;
55
	/**
56
	 * 纳税人税号
57
	 */
58
	private String taxNumber;
59
	/**
60
	 * 地址 电话
61
	 */
62
	private String addrPhone;
63
	/**
64
	 * 开户行及账号
65
	 */
66
	private String bankAddrAccount;
67
	/**
68
	 * 邮寄地址
69
	 */
70
	private String taxAddress;
71
	/**
72
	 * 创建时间
73
	 */
74
	private Date createTime;
75
	/**
76
	 * 是否被删除 状态  0:正常   1:删除
77
	 */
78
	private Integer isDel;
79
80
}

+ 4 - 0
src/main/java/io/renren/modules/app/entity/UserEntity.java

@ -90,4 +90,8 @@ public class UserEntity implements Serializable {
90 90
	 * 创建时间
91 91
	 */
92 92
	private Date createTime;
93
	/**
94
	 * 创建时间
95
	 */
96
	private Date modifyTime;
93 97
}

+ 1 - 1
src/main/java/io/renren/modules/app/service/UserService.java

@ -33,5 +33,5 @@ public interface UserService extends IService<UserEntity> {
33 33
	 * 用户注册
34 34
	 * @param user
35 35
	 */
36
	public void saveMember(UserEntity user);
36
	public void saveUser(UserEntity user);
37 37
}

+ 1 - 1
src/main/java/io/renren/modules/app/service/impl/UserServiceImpl.java

@ -48,7 +48,7 @@ public class UserServiceImpl extends ServiceImpl<UserDao, UserEntity> implements
48 48
49 49
	@Override
50 50
	@Transactional
51
    public void saveMember(UserEntity user){
51
    public void saveUser(UserEntity user){
52 52
        user.setCreateTime(new Date());
53 53
        //sha256加密
54 54
		String salt = RandomStringUtils.randomAlphanumeric(20);

+ 46 - 35
src/main/java/io/renren/modules/sys/controller/FileManagerController.java

@ -2,6 +2,8 @@ package io.renren.modules.sys.controller;
2 2
3 3
import java.io.File;
4 4
import java.io.IOException;
5
import java.text.DecimalFormat;
6
import java.text.SimpleDateFormat;
5 7
import java.time.LocalDateTime;
6 8
import java.time.format.DateTimeFormatter;
7 9
import java.util.ArrayList;
@ -110,50 +112,59 @@ public class FileManagerController {
110 112
        // System.out.println(dataPath +  dir);
111 113
        File[] fileList = file.listFiles();
112 114
113
        // ArrayList<String> dList = new ArrayList<>();
114
        ArrayList<String> resultList = new ArrayList<>();
115
        // ArrayList<Map<String, Object>> fList = new ArrayList<>();
115
116
        ArrayList<Map<String, Object>> resultList = new ArrayList<>();
117
        Map<String, Object> rfile = new HashMap<String, Object>();
116 118
117 119
        for (int i = 0; i < fileList.length; i++) {
118
            if (fileList[i].isDirectory()) {
119
                String fileName = fileList[i].getName();
120
                long time = fileList[i].lastModified();
121
                Map<String, Object> dfile = new HashMap<String, Object>();
122
                dfile.put('fileName', fileName);
123
                dfile.put("modifyTime", time);
124
                // dList.add(fileName);
125
                resultList.add(dfile);
126
                // System.out.println("文件:" + fileName);       
127
                // System.out.println(fileName);     
128
            }
129
            
130
            if (fileList[i].isFile()) {
131
                File ifile = fileList[i];
132
                String fileName = ifile.getName();
133
                String suffix = fileName.substring(fileName.lastIndexOf(".") + 1);
134
                long size = ifile.length();
135
                long time = ifile.lastModified();
136
                // Map<String, Object> ofile = new HashMap<>();
137
                Map<String, Object> ofile = new HashMap<String, Object>();
138
                ofile.put("fileName", fileName);
139
                ofile.put("suffix", suffix);
140
                ofile.put("size", size);
141
                ofile.put("modifyTime", time);
142
                
143
                // fList.add(ofile);
144
                resultList.add(ofile);
145
                // System.out.println("文件:" + fileName);       
146
                // System.out.println(fileName);       
120
            File ifile = fileList[i];
121
122
            String fileName = ifile.getName();
123
124
            long time = fileList[i].lastModified();
125
            SimpleDateFormat format =  new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //设置格式
126
            String modifyTime=format.format(time);   //获得带格式的字符串
127
128
            String suffix = "";
129
            String size = "";
130
            if (ifile.isFile()) {
131
                suffix = fileName.substring(fileName.lastIndexOf(".") + 1);
132
                long s = ifile.length();
133
                size = sizeBKM(s);
147 134
            }
135
            rfile.put("fileName", fileName);
136
            rfile.put("suffix", suffix);
137
            rfile.put("size", size);
138
            rfile.put("modifyTime", modifyTime);
139
140
            resultList.add(rfile);
141
  
142
148 143
        }
149
        // result.put("fList", fList);
150
        // result.put("dList", dList);
144
151 145
        result.put("resultList", resultList);
152 146
        result.put("activepath", dir);
153 147
        // System.out.println(dir);
154 148
        return R.ok(result);
155 149
    }
156 150
151
    public String sizeBKM(long filesize) {
152
        String size = "";
153
        if (filesize > 1024) {
154
            DecimalFormat decimalFormat = new DecimalFormat(".00");//构造方法的字符格式这里如果小数不足2位,会以0补足.
155
            Double lsize = filesize / 1024d;
156
            if (lsize > 1024) {
157
                lsize = lsize/1024;
158
            
159
                size = decimalFormat.format(lsize) + "M";
160
            } else {
161
                size = decimalFormat.format(lsize) + "K";
162
            }
163
        } else {
164
            size = filesize + "B";
165
        }
166
        return size;
167
    }
157 168
    /**
158 169
	 * 删除文件
159 170
	 * 
@ -227,4 +238,4 @@ public class FileManagerController {
227 238
        }
228 239
        return R.ok();
229 240
    }
230
}
241
}

+ 9 - 0
src/main/java/io/renren/modules/sys/controller/SysMenuController.java

@ -46,6 +46,15 @@ public class SysMenuController extends AbstractController {
46 46
		return R.ok().put("menuList", menuList).put("permissions", permissions);
47 47
	}
48 48
	
49
	@GetMapping("/mynav")
50
	public R mynav(){
51
		Long meetingMenuId = 76L;
52
		List<SysMenuEntity> meetingMenuList = sysMenuService.getUserMenuList(getUserId(), meetingMenuId);
53
		List<SysMenuEntity> noMeetingMenuList = sysMenuService.getUserNotParentIdMenuList(getUserId(), meetingMenuId);
54
		Set<String> permissions = shiroService.getUserPermissions(getUserId());
55
		return R.ok().put("meetingMenuList", meetingMenuList).put("noMeetingMenuList", noMeetingMenuList).put("permissions", permissions);
56
	}
57
49 58
	/**
50 59
	 * 所有菜单列表
51 60
	 */

+ 0 - 1
src/main/java/io/renren/modules/sys/dao/SysMenuDao.java

@ -32,5 +32,4 @@ public interface SysMenuDao extends BaseMapper<SysMenuEntity> {
32 32
	 * 获取不包含按钮的菜单列表
33 33
	 */
34 34
	List<SysMenuEntity> queryNotButtonList();
35
36 35
}

+ 10 - 0
src/main/java/io/renren/modules/sys/service/SysMenuService.java

@ -45,6 +45,16 @@ public interface SysMenuService extends IService<SysMenuEntity> {
45 45
	 */
46 46
	List<SysMenuEntity> getUserMenuList(Long userId);
47 47
48
	/**
49
	 * 根据父ID获取用户菜单列表
50
	 */
51
	List<SysMenuEntity> getUserMenuList(Long userId, Long parentId);
52
53
	/**
54
	 * 排除父id获取用户菜单列表
55
	 */
56
	List<SysMenuEntity> getUserNotParentIdMenuList(Long userId, Long parentId);
57
48 58
	/**
49 59
	 * 删除
50 60
	 */

+ 65 - 0
src/main/java/io/renren/modules/sys/service/impl/SysMenuServiceImpl.java

@ -105,4 +105,69 @@ public class SysMenuServiceImpl extends ServiceImpl<SysMenuDao, SysMenuEntity> i
105 105
		
106 106
		return subMenuList;
107 107
	}
108
109
	@Override
110
	public List<SysMenuEntity> getUserMenuList(Long userId, Long parentId) {
111
		//系统管理员,拥有最高权限
112
		if(userId == Constant.SUPER_ADMIN){
113
			//查询根菜单列表
114
			List<SysMenuEntity> menuList = queryListParentId(parentId);
115
			//递归获取子菜单
116
			getMenuTreeList(menuList, null);
117
			
118
			return menuList;
119
120
			// return getAllMenuList(null);
121
		}
122
		
123
		//用户菜单列表
124
		List<Long> menuIdList = sysUserService.queryAllMenuId(userId);
125
		//查询根菜单列表
126
		List<SysMenuEntity> menuList = queryListParentId(parentId, menuIdList);
127
		//递归获取子菜单
128
		getMenuTreeList(menuList, menuIdList);
129
		
130
		return menuList;
131
	}
132
133
	@Override
134
	public List<SysMenuEntity> getUserNotParentIdMenuList(Long userId, Long parentId) {
135
		//系统管理员,拥有最高权限
136
		if(userId == Constant.SUPER_ADMIN){
137
			//查询根菜单列表 第一遍父菜单id 为0
138
			List<SysMenuEntity> menuList = queryListParentId(0L);
139
			//递归获取子菜单
140
			getNotThatParentIdMenuTreeList(menuList, null, parentId);
141
			
142
			return menuList;
143
144
			// return getAllMenuList(null);
145
		}
146
147
		//用户菜单列表
148
		List<Long> menuIdList = sysUserService.queryAllMenuId(userId);
149
		//查询根菜单列表 第一遍父菜单id 为0
150
		List<SysMenuEntity> menuList = queryListParentId(0L, menuIdList);
151
		//递归获取子菜单
152
		getNotThatParentIdMenuTreeList(menuList, menuIdList, parentId);
153
154
		return menuList;
155
	}
156
157
/**
158
	 * 递归
159
	 */
160
	private List<SysMenuEntity> getNotThatParentIdMenuTreeList(List<SysMenuEntity> menuList, List<Long> menuIdList, Long parentId){
161
		List<SysMenuEntity> subMenuList = new ArrayList<SysMenuEntity>();
162
		
163
		for(SysMenuEntity entity : menuList){
164
			//目录
165
			if(entity.getType() == Constant.MenuType.CATALOG.getValue() && entity.getMenuId() != parentId){
166
				entity.setList(getMenuTreeList(queryListParentId(entity.getMenuId(), menuIdList), menuIdList));
167
			}
168
			subMenuList.add(entity);
169
		}
170
		
171
		return subMenuList;
172
	}
108 173
}