基于javaweb+mysql的springboot在线小说阅读系统(前后端分离+java+vue+springboot+ssm+mysql+maven)

基于javaweb+mysql的springboot在线小说阅读系统(前后端分离+java+vue+springboot+ssm+mysql+maven)

运行环境

Java≥8、MySQL≥5.7、Node.js≥10

开发工具

后端:eclipse/idea/myeclipse/sts等均可配置运行

前端:WebStorm/VSCode/HBuilderX等均可

适用

课程设计,大作业,毕业设计,项目练习,学习演示等

功能说明

基于javaweb+mysql的SpringBoot在线小说阅读系统(前后端分离+java+vue+springboot+ssm+mysql+maven)

一、项目简述

本系统功能包括: 普通用户端登录注册,小说的分类,日榜,月榜,年榜, 小说的阅读,分章节,小说的评论,收藏,推荐等等,以 及后台小说的维护,上架,编辑等等。

二、项目运行

环境配置: Jdk1.8 + Tomcat8.5 + Mysql + HBuilderX (Webstorm也 行)+ Eclispe (IntelliJ IDEA,Eclispe,MyEclispe,Sts都支 持)。

项目技术: Springboot + Maven + Mybatis + Vue , B/S 模式+ Maven等等

				}
				fileReader.close();
				return new ResponseObject("200", "操作成功", stringBuilder.toString());
			} catch (Exception e) {
				throw new ControllerException("找不到该章节的内容");
			}
		}
	}

	@PatchMapping("/content")
	@ApiOperation("修改Chapter的content")
	@PreAuthorize("isAuthenticated()")
	public ResponseObject patchContent(String content, @RequestBody HashMap<String, String> data) {
		log.info("修改Chapter的content");
		if (content == null || content.equals("")) {
			throw new ControllerException("content不可为null,也不可为空字符串");
		} else if (data.get("chapterContent") == null || data.get("chapterContent").equals("")) {
			throw new ControllerException("chapterContent不可为null,也不可为空字符串");
		} else {
			try {
				File file = new File(new File(ResourceUtils.getURL("src").getPath() + "main/resources/static/txt/"),
						content);
				FileWriter fileWriter = new FileWriter(file);
				fileWriter.write(data.get("chapterContent"));
				fileWriter.flush();
				fileWriter.close();
				return new ResponseObject("200", "操作成功", data.get("chapterContent"));
			} catch (Exception e) {
				throw new ControllerException("找不到该章节的内容");
			}
		}
	}

}
package com.homework.web.controller;


//无权限异常处理器
@Component
@Slf4j
public class MyAccessDeniedHandler implements AccessDeniedHandler {

	@Autowired
	ObjectMapper objectMapper;

	@Override
	public void handle(HttpServletRequest request, HttpServletResponse response,
			AccessDeniedException accessDeniedException) throws IOException, ServletException {
		log.info("已认证无权限,返回JSON格式的异常信息");
		response.setStatus(403);
		response.setCharacterEncoding("utf-8");
		response.setContentType("application/json; charset=utf-8");
		PrintWriter writer = response.getWriter();
		writer.write(objectMapper.writeValueAsString(new ResponseObject("403", "已认证无权限", null)));
		writer.flush();
		writer.close();
	}

}
package com.homework.exception.handler;

	public ResponseObject get(Integer volume_id) {
		log.info("查询Chapter");
		if (volume_id == null) {
			throw new ControllerException("volume_id不可为null");
		} else {
			return new ResponseObject("200", "操作成功", chapterService.selectByVolume_id(volume_id));
		}
	}

	@GetMapping("/{id:[0-9]+}/last")
	@ApiOperation("查询上一章的Chapter")
	public ResponseObject getLast(@PathVariable Integer id) {
		log.info("查询上一章的Chapter");
		if (id == null) {
			throw new ControllerException("id不可为null");
		} else {
			Chapter chapter = chapterService.selectById(id);
			if (chapter == null) {
				throw new ControllerException("该id无法查找到chapter");
			} else {
				return new ResponseObject("200", "操作成功",
						chapterService.selectLastByVolume_idId(chapter.getVolume_id(), chapter.getId()));
			}
		}
	}

	@GetMapping("/{id:[0-9]+}/next")
	@ApiOperation("查询下一章的Chapter")
	public ResponseObject getNext(@PathVariable Integer id) {
		log.info("查询下一章的Chapter");
		if (id == null) {
			throw new ControllerException("id不可为null");
		} else {
			Chapter chapter = chapterService.selectById(id);
			if (chapter == null) {
				throw new ControllerException("该id无法查找到chapter");
			} else {
				return new ResponseObject("200", "操作成功",
						chapterService.selectNextByVolume_idId(chapter.getVolume_id(), chapter.getId()));
			}
		}
	}

	@GetMapping("/{id:[0-9]+}")
		} else {
			throw new ControllerException("rank或者parent_id至少要有一个不为null");
		}
	}

	@GetMapping("/{id:[0-9]+}")
	@ApiOperation("查询Category")
	public ResponseObject getById(@PathVariable Integer id) {
		log.info("查询Category");
		if (id != null) {
			return new ResponseObject("200", "操作成功", categoryService.selectById(id));
		} else {
			throw new ControllerException("id不可为null");
		}
	}

}
package com.homework.web.controller;

@RestController
@RequestMapping("/api/user")
@Api(tags = "共同前缀:/api/user", description = "UserController")
@Slf4j
public class UserController {

	@Autowired
	UserService userService;

			return new ResponseObject("200", "操作成功", novelService.selectByUser_idOfRecommend(user_id));
		}
	}

}
package com.homework.web.controller;

@RestController
@RequestMapping("/api/follow")
@Api(tags = "共同前缀:/api/follow", description = "FollowController")
@Slf4j
public class FollowController {
	@Autowired
	UserService userService;
	@Autowired
	FollowService followService;

	@PostMapping
	@ApiOperation("新增Follow")
	@PreAuthorize("isAuthenticated()")
	public ResponseObject post(@RequestBody Follow follow) {
		log.info("新增Follow");
		System.out.println(follow);
		if (follow.getId() != null) {
			throw new ControllerException("id必须为null");
		} else if (follow.getFollower_id() != null) {
			throw new ControllerException("follower_id必须为null");
		} else if (follow.getFollowing_id() == null) {
			throw new ControllerException("following_id不可为null");
		} else {
			follow.setFollower_id(userService
					.selectByUsername((String) SecurityContextHolder.getContext().getAuthentication().getPrincipal())
					.getId());
	UserService userService;

	@PostMapping
	@ApiOperation("新增Volume")
	@PreAuthorize("isAuthenticated()")
	public ResponseObject post(@RequestBody Volume volume) {
		log.info("新增Volume");
		if (volume.getId() != null) {
			throw new ControllerException("id必须为null");
		} else if (volume.getNovel_id() == null) {
			throw new ControllerException("novel_id不可为null");
		} else if (volume.getName() == null || volume.getName().equals("")) {
			throw new ControllerException("name不可为null,也不可为空字符串");
		} else if (volume.getSummary() == null || volume.getSummary().equals("")) {
			throw new ControllerException("summary不可为null,也不可为空字符串");
		} else if (volumeService.selectByNovel_idName(volume.getNovel_id(), volume.getName()) != null) {
			throw new ControllerException("name不可重复");
		} else {
			User user = userService
					.selectByUsername((String) SecurityContextHolder.getContext().getAuthentication().getPrincipal());
			if (user.getId() == novelService.selectById(volume.getNovel_id()).getUser_id()
					|| user.getRole().equals("ADMIN")) {
				return new ResponseObject("200", "操作成功", volumeService.insert(volume));
			} else {
				throw new ControllerException("该用户无权限新增该volume");
			}
		}
	}

	@GetMapping
	@ApiOperation("查询Volume")
	public ResponseObject get(Integer novel_id) {
		log.info("查询Volume");
		if (novel_id != null) {
			return new ResponseObject("200", "操作成功", volumeService.selectByNovel_id(novel_id));
		} else {
			throw new ControllerException("novel_id不可为null");
		}
	}

	@GetMapping("/{id:[0-9]+}")
	@ApiOperation("查询Volume")
	public ResponseObject getById(@PathVariable Integer id) {
		log.info("查询Volume");
		if (id != null) {
			return new ResponseObject("200", "操作成功", volumeService.selectById(id));
		} else {
			throw new ControllerException("id不可为null");
		}
	}

	@PatchMapping("/{id:[0-9]+}")
					return new ResponseObject("200", "操作成功", novelService.update(novel2));
				} else {
					throw new ControllerException("该用户无权限修改该小说");
				}
			}
		}
	}

	@GetMapping("/rank")
	@ApiOperation("查询Novel")
	public ResponseObject Rank(Integer day_count, Integer limit_count) {
		if (day_count == null) {
			throw new ControllerException("day_count不可为null");
		} else if (limit_count == null) {
			throw new ControllerException("limit_count不可为null");
		} else {
			Date date = new Date(new Date().getTime() - (long) 1000 * 60 * 60 * 24 * day_count);
			return new ResponseObject("200", "操作成功",
					novelService.selectByRank(MyUtils.simpleDateFormat.format(date), limit_count));
		}
	}

	@PostMapping("/image")
	@ApiOperation("上传image")
	@PreAuthorize("isAuthenticated()")
	public ResponseObject postImage(MultipartFile file) throws Exception {
		log.info("上传image");
		if (file == null) {
			throw new ControllerException("上传的文件不可为null");
		} else {
			String fileName = file.getOriginalFilename();
			String suffix = fileName.substring(fileName.lastIndexOf("."));
			if (!suffix.equals(".png")) {
				throw new RuntimeException("上传的文件必须为png文件");
			} else {
				String directoryPath = ResourceUtils.getURL("src").getPath() + "main/resources/static/images/";
				File directory = new File(directoryPath);
				if (!directory.exists()) {
					directory.mkdirs();
				}
				String newFileName = new Date().getTime() + ".png";
				File file2 = new File(directory, newFileName);
				if (!file2.exists()) {
					file2.createNewFile();
				}
				// 保存文件
				file.transferTo(file2);
				return new ResponseObject("200", "操作成功", newFileName);
			}
		}
	}

	@PatchMapping("/image")
				return new ResponseObject("200", "操作成功", recommendService.insert(recommend));
			}
		}
	}

	@GetMapping
	@ApiOperation("查询Recommend")
	public ResponseObject get(Integer novel_id, Integer user_id) {
		log.info("查询Recommend");
		if (novel_id == null) {
			throw new ControllerException("novel_id不可为null");
		} else if (user_id == null) {
			throw new ControllerException("user_id不可为null");
		} else {
			return new ResponseObject("200", "操作成功", recommendService.selectByUser_idNovel_id(user_id, novel_id));
		}
	}

	@DeleteMapping
	@ApiOperation("删除Recommend")
	@PreAuthorize("isAuthenticated()")
	public ResponseObject delete(Integer novel_id, Integer user_id) {
		log.info("删除Recommend");
		if (novel_id == null) {
			throw new ControllerException("novel_id不可为null");
		} else if (user_id == null) {
			throw new ControllerException("user_id不可为null");
		} else {
			Recommend recommend = recommendService.selectByUser_idNovel_id(user_id, novel_id);
			if (recommend == null) {
				throw new ControllerException("该用户还未推荐该小说,无法取消推荐");
			} else {
				User user = userService.selectByUsername(
						(String) SecurityContextHolder.getContext().getAuthentication().getPrincipal());
				if (user.getId() == recommend.getUser_id() || user.getRole().equals("ADMIN")) {
					recommendService.deleteById(recommend.getId());
					return new ResponseObject("200", "操作成功", null);
				} else {
					throw new ControllerException("该用户无权限取消推荐");
				}

@RestController
@RequestMapping("/api/collection")
@Api(tags = "共同前缀:/api/collection", description = "CollectionController")
@Slf4j
public class CollectionController {
	@Autowired
	CollectionService collectionService;
	@Autowired
	UserService userService;
	@Autowired
	NovelService novelService;

	@PostMapping
	@ApiOperation("新增Collection")
	@PreAuthorize("isAuthenticated()")
	public ResponseObject post(Collection collection) {
		log.info("新增Collection");
		if (collection.getId() != null) {
			throw new ControllerException("id必须为null");
		} else if (collection.getNovel_id() == null) {
			throw new ControllerException("novel_id不可为null");
		} else {
			collection.setUser_id(userService
					.selectByUsername((String) SecurityContextHolder.getContext().getAuthentication().getPrincipal())
					.getId());
			if (collectionService.selectByUser_idNovel_id(collection.getUser_id(), collection.getNovel_id()) != null) {
				throw new ControllerException("该用户已经收藏过该小说了,不可重复收藏");
			} else {
				return new ResponseObject("200", "操作成功", collectionService.insert(collection));
			}
		}
	}

	@GetMapping
	@ApiOperation("查询Collection")
	public ResponseObject get(Integer novel_id, Integer user_id) {
		log.info("查询Collection");
		if (novel_id != null && user_id != null) {
			return new ResponseObject("200", "操作成功", collectionService.selectByUser_idNovel_id(user_id, novel_id));
		} else if (novel_id != null && user_id == null) {

@RestController
@RequestMapping("/api/category")
@Api(tags = "共同前缀:/api/category", description = "CategoryController")
@Slf4j
public class CategoryController {

	@Autowired
	CategoryService categoryService;

	@PostMapping
	@ApiOperation("新增Category")
	@PreAuthorize("hasAnyAuthority('ROLE_ADMIN')")
	public ResponseObject post(@RequestBody Category category) {
		log.info("新增Category");
		if (category.getId() != null) {
			throw new ControllerException("id必须为null");
		} else if (category.getRank() == null) {
			throw new ControllerException("rank不可为null");
		} else if (category.getName() == null || category.getName().equals("")) {
			throw new ControllerException("name不可为null,也不可为空字符串");
		} else if (category.getParent_id() == null) {
			throw new ControllerException("parent_id不可为null");
		} else if (categoryService.selectByParent_idName(category.getParent_id(), category.getName()) != null) {
			throw new ControllerException("name不可重复");
		} else {
			return new ResponseObject("200", "操作成功", categoryService.insert(category));
		}
	}

	@PutMapping("/{id:[0-9]+}")
	@ApiOperation("修改Category")
	@PreAuthorize("hasAnyAuthority('ROLE_ADMIN')")
	public ResponseObject putById(@PathVariable Integer id, @RequestBody HashMap<String, String> data) {
		log.info("修改Category");
		Category category = categoryService.selectById(id);
		if (category == null) {
			throw new ControllerException("使用该id的Category不存在");
		} else if (categoryService.selectByParent_idName(category.getParent_id(), data.get("name")) != null) {
			throw new ControllerException("同一个分类下的name不可重复");
		} else {
			category.setName(data.get("name"));
			return new ResponseObject("200", "操作成功", categoryService.update(category));
		}
		}
	}

}
package com.homework.web.controller;

@RestController
@RequestMapping("/api/volume")
@Api(tags = "共同前缀:/api/volume", description = "VolumeController")
@Slf4j
public class VolumeController {

	@Autowired
	VolumeService volumeService;
	@Autowired
	NovelService novelService;
	@Autowired
	UserService userService;

	@PostMapping
	@ApiOperation("新增Volume")
	@PreAuthorize("isAuthenticated()")
	public ResponseObject post(@RequestBody Volume volume) {
		log.info("新增Volume");
		if (volume.getId() != null) {
			throw new ControllerException("id必须为null");
		} else if (volume.getNovel_id() == null) {
			throw new ControllerException("novel_id不可为null");
		} else if (volume.getName() == null || volume.getName().equals("")) {
	@GetMapping("/count")
	@ApiOperation("查询Recommend")
	public ResponseObject getCount(Integer novel_id) {
		log.info("查询Recommend");
		if (novel_id == null) {
			throw new ControllerException("novel_id不可为null");
		} else {
			return new ResponseObject("200", "操作成功", recommendService.selectByNovel_id(novel_id).size());
		}
	}

	@GetMapping("/novel")
	@ApiOperation("查询Recommend的Novel")
	public ResponseObject getNovel(Integer user_id) {
		log.info("查询Recommend的Novel");
		if (user_id == null) {
			throw new ControllerException("user_id不可为null");
		} else {
			return new ResponseObject("200", "操作成功", novelService.selectByUser_idOfRecommend(user_id));
		}
	}

}
package com.homework.web.controller;

@RestController

	@Autowired
	RecommendService recommendService;
	@Autowired
	UserService userService;
	@Autowired
	NovelService novelService;

	@PostMapping
	@ApiOperation("新增Recommend")
	@PreAuthorize("isAuthenticated()")
	public ResponseObject post(@RequestBody Recommend recommend) {
		log.info("新增Recommend");
		if (recommend.getId() != null) {
			throw new ControllerException("id必须为null");
		} else if (recommend.getNovel_id() == null) {
			throw new ControllerException("novel_id不可为null");
		} else {
			recommend.setUser_id(userService
					.selectByUsername((String) SecurityContextHolder.getContext().getAuthentication().getPrincipal())
					.getId());
			if (recommendService.selectByUser_idNovel_id(recommend.getUser_id(), recommend.getNovel_id()) != null) {
				throw new ControllerException("该用户已经推荐过该小说了,不可重复推荐");
			} else {
				return new ResponseObject("200", "操作成功", recommendService.insert(recommend));
			}
		}
	}

	@GetMapping
	@ApiOperation("查询Recommend")
	public ResponseObject get(Integer novel_id, Integer user_id) {
		log.info("查询Recommend");
		if (novel_id == null) {
			throw new ControllerException("novel_id不可为null");
		} else if (user_id == null) {
			throw new ControllerException("user_id不可为null");
		} else {
			return new ResponseObject("200", "操作成功", recommendService.selectByUser_idNovel_id(user_id, novel_id));
		}
	}

//未认证异常处理器
@Component
@Slf4j
public class MyAuthenticationEntryPoint implements AuthenticationEntryPoint {

	@Autowired
	ObjectMapper objectMapper;

	@Override
	public void commence(HttpServletRequest request, HttpServletResponse response,
			AuthenticationException authException) throws IOException, ServletException {
		log.info("未认证,返回JSON格式的异常信息");
		response.setStatus(401);
		response.setCharacterEncoding("utf-8");
		response.setContentType("application/json; charset=utf-8");
		PrintWriter writer = response.getWriter();
		writer.write(objectMapper.writeValueAsString(new ResponseObject("401", "未认证", null)));
		writer.flush();
		writer.close();
	}

}
package com.homework.web.controller;

			throw new ControllerException("id不可为null");
		} else {
			Novel novel2 = novelService.selectById(id);
			if (novel2 == null) {
				throw new ControllerException("不存在为该id的novel");
			} else {
				User user = userService.selectByUsername(
						(String) SecurityContextHolder.getContext().getAuthentication().getPrincipal());
				if (user.getId() == novel2.getUser_id() || user.getRole().equals("ADMIN")) {
					if (novel.getName() != null && !novel.getName().equals("")) {
						novel2.setName(novel.getName());
					} else if (novel.getSummary() != null && !novel.getSummary().equals("")) {
						novel2.setSummary(novel.getSummary());
					} else if (novel.getCategory_id() != null) {
						novel2.setCategory_id(novel.getCategory_id());
					} else if (novel.getMultiplier() != null) {
						novel2.setMultiplier(novel.getMultiplier());
					} else if (novel.getAddend() != null) {
						novel2.setAddend(novel.getAddend());
					} else {
						throw new ControllerException("请传入需要修改的数据,如name,summary,category_id,multiplier,addend");
					}
					return new ResponseObject("200", "操作成功", novelService.update(novel2));
				} else {
					throw new ControllerException("该用户无权限修改该小说");
				}
			}
		}
	}

	@GetMapping("/rank")
	@ApiOperation("查询Novel")
	public ResponseObject Rank(Integer day_count, Integer limit_count) {
		if (day_count == null) {
			throw new ControllerException("day_count不可为null");
		} else if (limit_count == null) {
			throw new ControllerException("limit_count不可为null");
		} else {
			Date date = new Date(new Date().getTime() - (long) 1000 * 60 * 60 * 24 * day_count);
			return new ResponseObject("200", "操作成功",
					novelService.selectByRank(MyUtils.simpleDateFormat.format(date), limit_count));
		}
	}

	@PostMapping("/image")
	@ApiOperation("上传image")
	@PreAuthorize("isAuthenticated()")
	public ResponseObject postImage(MultipartFile file) throws Exception {
			} else {
				return new ResponseObject("200", "操作成功", collectionService.insert(collection));
			}
		}
	}

	@GetMapping
	@ApiOperation("查询Collection")
	public ResponseObject get(Integer novel_id, Integer user_id) {
		log.info("查询Collection");
		if (novel_id != null && user_id != null) {
			return new ResponseObject("200", "操作成功", collectionService.selectByUser_idNovel_id(user_id, novel_id));
		} else if (novel_id != null && user_id == null) {
			return new ResponseObject("200", "操作成功", collectionService.selectByNovel_id(novel_id));
		} else if (novel_id == null && user_id != null) {
			return new ResponseObject("200", "操作成功", collectionService.selectByUser_id(user_id));
		} else {
			throw new ControllerException("novel_id与user_id不可同时为null");
		}
	}

	@GetMapping("/novel")
	@ApiOperation("查询Collection的Novel")
	public ResponseObject getNovel(Integer user_id) {
		log.info("查询Collection的Novel");
		if (user_id == null) {
			throw new ControllerException("user_id不可为null");
		} else {
			return new ResponseObject("200", "操作成功", novelService.selectByUser_idOfCollection(user_id));
		}
	}

	@DeleteMapping
	@ApiOperation("删除Collection")
	@PreAuthorize("isAuthenticated()")
	public ResponseObject delete(Integer novel_id, Integer user_id) {
		log.info("删除Collection");
		if (novel_id == null) {
			throw new ControllerException("novel_id不可为null");
		} else if (user_id == null) {
			throw new ControllerException("user_id不可为null");
		} else {
			Collection collection = collectionService.selectByUser_idNovel_id(user_id, novel_id);
			if (collection == null) {
				throw new ControllerException("该用户还未收藏该小说,无法取消收藏");
			} else {

//未认证异常处理器
@Component
@Slf4j
public class MyAuthenticationEntryPoint implements AuthenticationEntryPoint {

	@Autowired
	ObjectMapper objectMapper;

	@Override
	public void commence(HttpServletRequest request, HttpServletResponse response,
			AuthenticationException authException) throws IOException, ServletException {
		log.info("未认证,返回JSON格式的异常信息");
		response.setStatus(401);
		response.setCharacterEncoding("utf-8");
		response.setContentType("application/json; charset=utf-8");
		PrintWriter writer = response.getWriter();
		writer.write(objectMapper.writeValueAsString(new ResponseObject("401", "未认证", null)));
		writer.flush();
		writer.close();
	}

}
package com.homework.web.controller;

		} else {
			Chapter chapter = chapterService.selectById(id);
			if (chapter == null) {
				throw new ControllerException("该id无法查找到chapter");
			} else {
				return new ResponseObject("200", "操作成功",
						chapterService.selectLastByVolume_idId(chapter.getVolume_id(), chapter.getId()));
			}
		}
	}

	@GetMapping("/{id:[0-9]+}/next")
	@ApiOperation("查询下一章的Chapter")
	public ResponseObject getNext(@PathVariable Integer id) {
		log.info("查询下一章的Chapter");
		if (id == null) {
			throw new ControllerException("id不可为null");
		} else {
			Chapter chapter = chapterService.selectById(id);
			if (chapter == null) {
				throw new ControllerException("该id无法查找到chapter");
			} else {
				return new ResponseObject("200", "操作成功",
						chapterService.selectNextByVolume_idId(chapter.getVolume_id(), chapter.getId()));
			}
		}
	}

	@GetMapping("/{id:[0-9]+}")
	@ApiOperation("查询Chapter")
	public ResponseObject getById(@PathVariable Integer id) {
		log.info("查询Chapter");
		if (id == null) {
			throw new ControllerException("id不可为null");
		} else {
			return new ResponseObject("200", "操作成功", chapterService.selectById(id));
		}
	}

	@GetMapping("/content")
	@ApiOperation("查询Chapter的content")
	public ResponseObject getContent(String content) {
		log.info("查询Chapter的content");
		if (content == null || content.equals("")) {
			throw new ControllerException("content不可为null,也不可为空字符串");
		} else {
			try {
				StringBuilder stringBuilder = new StringBuilder();
				File file = new File(new File(ResourceUtils.getURL("src").getPath() + "main/resources/static/txt/"),
						content);
				FileReader fileReader = new FileReader(file);
				char[] charArray = new char[1024];
				int length = 0;

请添加图片描述

请添加图片描述
请添加图片描述
请添加图片描述

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值