Compare commits
No commits in common. 'dev-captcha' and 'master' have entirely different histories.
dev-captch
...
master
@ -0,0 +1,94 @@
|
|||||||
|
package com.hyp.web.controller.common;
|
||||||
|
|
||||||
|
import java.awt.image.BufferedImage;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import javax.imageio.ImageIO;
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.util.FastByteArrayOutputStream;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
import com.google.code.kaptcha.Producer;
|
||||||
|
import com.hyp.common.config.HypConfig;
|
||||||
|
import com.hyp.common.constant.CacheConstants;
|
||||||
|
import com.hyp.common.constant.Constants;
|
||||||
|
import com.hyp.common.core.domain.AjaxResult;
|
||||||
|
import com.hyp.common.core.redis.RedisCache;
|
||||||
|
import com.hyp.common.utils.sign.Base64;
|
||||||
|
import com.hyp.common.utils.uuid.IdUtils;
|
||||||
|
import com.hyp.system.service.ISysConfigService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 验证码操作处理
|
||||||
|
*
|
||||||
|
* @author ruoyi
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
public class CaptchaController
|
||||||
|
{
|
||||||
|
@Resource(name = "captchaProducer")
|
||||||
|
private Producer captchaProducer;
|
||||||
|
|
||||||
|
@Resource(name = "captchaProducerMath")
|
||||||
|
private Producer captchaProducerMath;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private RedisCache redisCache;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private ISysConfigService configService;
|
||||||
|
/**
|
||||||
|
* 生成验证码
|
||||||
|
*/
|
||||||
|
@GetMapping("/captchaImage")
|
||||||
|
public AjaxResult getCode(HttpServletResponse response) throws IOException
|
||||||
|
{
|
||||||
|
AjaxResult ajax = AjaxResult.success();
|
||||||
|
boolean captchaEnabled = configService.selectCaptchaEnabled();
|
||||||
|
ajax.put("captchaEnabled", captchaEnabled);
|
||||||
|
if (!captchaEnabled)
|
||||||
|
{
|
||||||
|
return ajax;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 保存验证码信息
|
||||||
|
String uuid = IdUtils.simpleUUID();
|
||||||
|
String verifyKey = CacheConstants.CAPTCHA_CODE_KEY + uuid;
|
||||||
|
|
||||||
|
String capStr = null, code = null;
|
||||||
|
BufferedImage image = null;
|
||||||
|
|
||||||
|
// 生成验证码
|
||||||
|
String captchaType = HypConfig.getCaptchaType();
|
||||||
|
if ("math".equals(captchaType))
|
||||||
|
{
|
||||||
|
String capText = captchaProducerMath.createText();
|
||||||
|
capStr = capText.substring(0, capText.lastIndexOf("@"));
|
||||||
|
code = capText.substring(capText.lastIndexOf("@") + 1);
|
||||||
|
image = captchaProducerMath.createImage(capStr);
|
||||||
|
}
|
||||||
|
else if ("char".equals(captchaType))
|
||||||
|
{
|
||||||
|
capStr = code = captchaProducer.createText();
|
||||||
|
image = captchaProducer.createImage(capStr);
|
||||||
|
}
|
||||||
|
|
||||||
|
redisCache.setCacheObject(verifyKey, code, Constants.CAPTCHA_EXPIRATION, TimeUnit.MINUTES);
|
||||||
|
// 转换流信息写出
|
||||||
|
FastByteArrayOutputStream os = new FastByteArrayOutputStream();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
ImageIO.write(image, "jpg", os);
|
||||||
|
}
|
||||||
|
catch (IOException e)
|
||||||
|
{
|
||||||
|
return AjaxResult.error(e.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
ajax.put("uuid", uuid);
|
||||||
|
ajax.put("img", Base64.encode(os.toByteArray()));
|
||||||
|
return ajax;
|
||||||
|
}
|
||||||
|
}
|
@ -1,242 +0,0 @@
|
|||||||
package com.hyp.web.controller.manager;
|
|
||||||
|
|
||||||
import cn.hutool.core.collection.CollUtil;
|
|
||||||
import cn.hutool.core.convert.Convert;
|
|
||||||
import com.hyp.common.core.domain.AjaxResult;
|
|
||||||
import com.hyp.common.core.domain.entity.SysDictData;
|
|
||||||
import com.hyp.common.core.domain.entity.SysUser;
|
|
||||||
import com.hyp.common.core.domain.model.LoginUser;
|
|
||||||
import com.hyp.common.enums.ApplyStatusEnum;
|
|
||||||
import com.hyp.common.exception.ServiceException;
|
|
||||||
import com.hyp.common.utils.SecurityUtils;
|
|
||||||
import com.hyp.system.domain.RewApplyInfoList;
|
|
||||||
import com.hyp.system.domain.RewFileRelation;
|
|
||||||
import com.hyp.system.domain.RewScoreInfo;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListSaveDTO;
|
|
||||||
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
||||||
import com.hyp.system.domain.vo.FileRelationVO;
|
|
||||||
import com.hyp.system.service.*;
|
|
||||||
import org.apache.commons.lang3.StringUtils;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Objects;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* packageName com.hyp.web.controller.manager
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @version JDK 8
|
|
||||||
* @className RewApplyInfoListManager
|
|
||||||
* @date 2024/4/11
|
|
||||||
* @description 申请
|
|
||||||
*/
|
|
||||||
@Component
|
|
||||||
public class ApplyInfoListManager {
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private RewApplyInfoListService applyInfoListService;
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private RewScoreInfoService scoreInfoService;
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private ISysDictDataService dictDataService;
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private RewFileRelationService relationService;
|
|
||||||
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private ISysDictTypeService dictTypeService;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 奖项类型
|
|
||||||
* @param null
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
|
|
||||||
private static final String REW_APPLY_TYPE = "rew_apply_type";
|
|
||||||
|
|
||||||
|
|
||||||
public List<ApplyInfoListVO> selectApplyInfoList(ApplyInfoListDTO applyInfoListDTO){
|
|
||||||
if (!SysUser.isAdmin(SecurityUtils.getUserId())){
|
|
||||||
applyInfoListDTO.setCreateId(SecurityUtils.getUserId());
|
|
||||||
}
|
|
||||||
return applyInfoListService.selectApplyInfoList(applyInfoListDTO);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public List<ApplyInfoListVO> selectAduitInfoList(ApplyInfoListDTO applyInfoListDTO){
|
|
||||||
return applyInfoListService.selectApplyInfoList(applyInfoListDTO);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public List<ApplyInfoListVO> selectScoreInfoList(ApplyInfoListDTO applyInfoListDTO){
|
|
||||||
List<ApplyInfoListVO> applyInfoListVOS = applyInfoListService.selectApplyInfoList(applyInfoListDTO);
|
|
||||||
applyInfoListVOS.forEach(applyInfoListVO -> {
|
|
||||||
if (!SysUser.isAdmin(SecurityUtils.getUserId())) {
|
|
||||||
Integer count = scoreInfoService.lambdaQuery()
|
|
||||||
.eq(RewScoreInfo::getApplyId, applyInfoListVO.getApplyId())
|
|
||||||
.eq(RewScoreInfo::getCreateId, SecurityUtils.getUserId()).count();
|
|
||||||
if (count > 0) {
|
|
||||||
applyInfoListVO.setScoreStatus(1);
|
|
||||||
}
|
|
||||||
} else if (SysUser.isAdmin(SecurityUtils.getUserId())) {
|
|
||||||
Integer count = scoreInfoService.lambdaQuery()
|
|
||||||
.eq(RewScoreInfo::getApplyId, applyInfoListVO.getApplyId()).count();
|
|
||||||
if (count > 0) {
|
|
||||||
applyInfoListVO.setScoreStatus(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return applyInfoListVOS;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 生成applyId
|
|
||||||
* @param applyType
|
|
||||||
* @return com.hyp.system.domain.vo.ApplyInfoListVO
|
|
||||||
*/
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
|
||||||
public ApplyInfoListVO getApplyId(String applyType){
|
|
||||||
LoginUser loginUser = SecurityUtils.getLoginUser();
|
|
||||||
List<RewApplyInfoList> list = applyInfoListService.lambdaQuery()
|
|
||||||
.eq(RewApplyInfoList::getApplyType, applyType)
|
|
||||||
.eq(RewApplyInfoList::getCreateId, loginUser.getUserId())
|
|
||||||
.ne(RewApplyInfoList::getApplyStatus,ApplyStatusEnum.END.getType())
|
|
||||||
.list();
|
|
||||||
if(CollUtil.isNotEmpty(list)){
|
|
||||||
throw new ServiceException("该用户已申请,不能重复申请!");
|
|
||||||
}
|
|
||||||
RewApplyInfoList applyInfoList = new RewApplyInfoList();
|
|
||||||
applyInfoList.setApplyType(applyType);
|
|
||||||
|
|
||||||
String name = dictDataService.selectDictLabel(REW_APPLY_TYPE, applyType);
|
|
||||||
if(StringUtils.isNotBlank(name)){
|
|
||||||
applyInfoList.setApplyName(name);
|
|
||||||
}
|
|
||||||
applyInfoList.setApplyStatus(ApplyStatusEnum.SAVE.getType());
|
|
||||||
applyInfoList.setCreateId(loginUser.getUserId());
|
|
||||||
applyInfoList.setCreateBy(loginUser.getUsername());
|
|
||||||
applyInfoList.setUpdateTime(new Date());
|
|
||||||
applyInfoList.setCreateTime(new Date());
|
|
||||||
applyInfoListService.save(applyInfoList);
|
|
||||||
return Convert.convert(ApplyInfoListVO.class, applyInfoList);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 提交申请
|
|
||||||
* @param applyInfoListSaveDTO
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
|
||||||
public boolean submit(ApplyInfoListSaveDTO applyInfoListSaveDTO){
|
|
||||||
LoginUser loginUser = SecurityUtils.getLoginUser();
|
|
||||||
RewApplyInfoList applyInfoList = applyInfoListService.getById(applyInfoListSaveDTO.getApplyId());
|
|
||||||
if(Objects.nonNull(applyInfoList)){
|
|
||||||
applyInfoList.setAppTime(new Date());
|
|
||||||
applyInfoList.setUpdateBy(loginUser.getUsername());
|
|
||||||
applyInfoList.setIsReward(applyInfoListSaveDTO.getIsReward());
|
|
||||||
applyInfoList.setApplyStatus(ApplyStatusEnum.SUBMIT.getType());
|
|
||||||
}
|
|
||||||
return applyInfoListService.saveOrUpdate(applyInfoList);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 删除申请
|
|
||||||
* @param applyId
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public boolean deleteById(String applyId){
|
|
||||||
relationService.lambdaUpdate()
|
|
||||||
.eq(RewFileRelation::getApplyId, applyId)
|
|
||||||
.remove();
|
|
||||||
return applyInfoListService.removeById(applyId);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 查询详细
|
|
||||||
* @param applyId
|
|
||||||
* @return com.hyp.system.domain.vo.ApplyInfoListVO
|
|
||||||
*/
|
|
||||||
public ApplyInfoListVO detail(String applyId){
|
|
||||||
RewApplyInfoList applyInfoList = applyInfoListService.getById(applyId);
|
|
||||||
ApplyInfoListVO applyInfoListVO = Convert.convert(ApplyInfoListVO.class, applyInfoList);
|
|
||||||
List<RewFileRelation> list = relationService.lambdaQuery().eq(RewFileRelation::getApplyId, applyId).list();
|
|
||||||
List<FileRelationVO> fileRelationVOList = Convert.toList(FileRelationVO.class, list);
|
|
||||||
if(CollUtil.isNotEmpty(fileRelationVOList)){
|
|
||||||
applyInfoListVO.setFileRelationVOList(fileRelationVOList);
|
|
||||||
}
|
|
||||||
return applyInfoListVO;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 审核提交
|
|
||||||
* @param applyId
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public boolean approved(String applyId){
|
|
||||||
return applyInfoListService.lambdaUpdate()
|
|
||||||
.eq(RewApplyInfoList::getApplyId, applyId)
|
|
||||||
.set(RewApplyInfoList::getApplyStatus, ApplyStatusEnum.AUDIT.getType())
|
|
||||||
.set(RewApplyInfoList::getAuthTime, new Date())
|
|
||||||
.update();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 退回
|
|
||||||
* @param applyId
|
|
||||||
* @param applyMsg
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public boolean applyBack(String applyId,String applyMsg){
|
|
||||||
return applyInfoListService.lambdaUpdate()
|
|
||||||
.eq(RewApplyInfoList::getApplyId, applyId)
|
|
||||||
.set(RewApplyInfoList::getApplyStatus, ApplyStatusEnum.BACK.getType())
|
|
||||||
.set(Objects.nonNull(applyMsg), RewApplyInfoList::getApplyMsg, applyMsg)
|
|
||||||
.set(RewApplyInfoList::getAuthTime, new Date())
|
|
||||||
.update();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 文件上传校验
|
|
||||||
* @param applyId
|
|
||||||
* @param applyType
|
|
||||||
* @return com.hyp.common.core.domain.AjaxResult
|
|
||||||
*/
|
|
||||||
|
|
||||||
public AjaxResult checkUploadFile(String applyId,String applyType){
|
|
||||||
List<SysDictData> list = dictTypeService.selectDictDataByType(applyType);
|
|
||||||
if(CollUtil.isNotEmpty(list)){
|
|
||||||
for(SysDictData sysDictData : list){
|
|
||||||
List<RewFileRelation> fileRelations = relationService.lambdaQuery()
|
|
||||||
.eq(RewFileRelation::getApplyId, applyId)
|
|
||||||
.eq(RewFileRelation::getFileCode, sysDictData.getDictValue()).list();
|
|
||||||
if(CollUtil.isEmpty(fileRelations)){
|
|
||||||
return AjaxResult.error("《"+sysDictData.getDictLabel()+"》"+"材料存在未上传情况,请检查");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return AjaxResult.success();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,233 +0,0 @@
|
|||||||
package com.hyp.web.controller.manager;
|
|
||||||
|
|
||||||
import cn.hutool.core.collection.CollUtil;
|
|
||||||
import cn.hutool.core.io.FileUtil;
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
||||||
import com.hyp.common.config.HypConfig;
|
|
||||||
import com.hyp.common.core.domain.AjaxResult;
|
|
||||||
import com.hyp.common.exception.ServiceException;
|
|
||||||
import com.hyp.common.utils.file.FileUploadUtils;
|
|
||||||
import com.hyp.common.utils.file.FileUtils;
|
|
||||||
import com.hyp.framework.config.ServerConfig;
|
|
||||||
import com.hyp.system.domain.RewFileRelation;
|
|
||||||
import com.hyp.system.service.RewFileRelationService;
|
|
||||||
import org.apache.commons.lang3.StringUtils;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Objects;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* packageName com.hyp.web.controller.manager
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @version JDK 8
|
|
||||||
* @className FileRelationManager
|
|
||||||
* @date 2024/4/12
|
|
||||||
* @description 文件
|
|
||||||
*/
|
|
||||||
@Component
|
|
||||||
public class FileRelationManager {
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private RewFileRelationService fileRelationService;
|
|
||||||
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private ServerConfig serverConfig;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 未通过
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
private static final Integer FILE_STATE_WTG = 2;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 删除文件
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public boolean delFile(String fileId){
|
|
||||||
RewFileRelation fileRelation = fileRelationService.getById(fileId);
|
|
||||||
if(Objects.isNull(fileRelation)){
|
|
||||||
throw new ServiceException("文件不存在");
|
|
||||||
}
|
|
||||||
FileUtil.del(fileRelation.getFilePath());
|
|
||||||
return fileRelationService.removeById(fileId);
|
|
||||||
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 材料审核
|
|
||||||
* @param applyId
|
|
||||||
* @param fileCode
|
|
||||||
* @param fileState
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public boolean filePass( String applyId, String fileCode, Integer fileState){
|
|
||||||
return fileRelationService.lambdaUpdate()
|
|
||||||
.eq(RewFileRelation::getApplyId,applyId)
|
|
||||||
.eq(RewFileRelation::getFileCode,fileCode)
|
|
||||||
.set(RewFileRelation::getFileState,fileState)
|
|
||||||
.update();
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 材料审核
|
|
||||||
* @param fileId
|
|
||||||
* @param fileState
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public boolean pass( String fileId, Integer fileState){
|
|
||||||
return fileRelationService.lambdaUpdate()
|
|
||||||
.eq(RewFileRelation::getFileId,fileId)
|
|
||||||
.set(RewFileRelation::getFileState,fileState)
|
|
||||||
.update();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 验证文件是否审查
|
|
||||||
* @param applyId
|
|
||||||
* @return com.hyp.common.core.domain.AjaxResult
|
|
||||||
*/
|
|
||||||
public AjaxResult checkFile(String applyId){
|
|
||||||
List<RewFileRelation> list = fileRelationService.lambdaQuery()
|
|
||||||
.eq(RewFileRelation::getApplyId, applyId)
|
|
||||||
.list();
|
|
||||||
if(CollUtil.isNotEmpty(list)){
|
|
||||||
for(RewFileRelation rewFileRelation : list){
|
|
||||||
if(Objects.equals(rewFileRelation.getFileState(),FILE_STATE_WTG) || Objects.isNull(rewFileRelation.getFileState())){
|
|
||||||
return AjaxResult.error("材料存在未审核情况,请检查");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return AjaxResult.success();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 单个保存
|
|
||||||
* @param applyId
|
|
||||||
* @param filename
|
|
||||||
* @param fileCode
|
|
||||||
* @param url
|
|
||||||
* @param originalFilename
|
|
||||||
* @return com.hyp.system.domain.RewFileRelation
|
|
||||||
*/
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
|
||||||
public RewFileRelation save(String applyId,String filename,String fileCode,String url,String originalFilename){
|
|
||||||
RewFileRelation rewFileRelation = new RewFileRelation();
|
|
||||||
rewFileRelation.setApplyId(applyId);
|
|
||||||
rewFileRelation.setFileName(filename);
|
|
||||||
rewFileRelation.setFileCode(fileCode);
|
|
||||||
rewFileRelation.setFilePath(url);
|
|
||||||
rewFileRelation.setRealName(originalFilename);
|
|
||||||
fileRelationService.save(rewFileRelation);
|
|
||||||
return rewFileRelation;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 批量保存文件
|
|
||||||
* @param files
|
|
||||||
* @param applyId
|
|
||||||
* @param filename
|
|
||||||
* @param fileCode
|
|
||||||
* @return java.util.List<com.hyp.system.domain.RewFileRelation>
|
|
||||||
*/
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
|
||||||
public List<RewFileRelation> saveBatch(List<MultipartFile> files,
|
|
||||||
String applyId,
|
|
||||||
String filename,
|
|
||||||
String fileCode) throws IOException {
|
|
||||||
List<RewFileRelation> fileRelations = new ArrayList<>();
|
|
||||||
// 上传文件路径
|
|
||||||
String filePath = HypConfig.getUploadPath();
|
|
||||||
for (MultipartFile file : files) {
|
|
||||||
if (!file.isEmpty()) {
|
|
||||||
// 上传并返回新文件名称
|
|
||||||
String fileNames = FileUploadUtils.upload(filePath, file);
|
|
||||||
String url = serverConfig.getUrl() + fileNames;
|
|
||||||
if(StringUtils.isBlank(filename)){
|
|
||||||
filename = fileNames;
|
|
||||||
}
|
|
||||||
RewFileRelation rewFileRelation = new RewFileRelation();
|
|
||||||
rewFileRelation.setApplyId(applyId);
|
|
||||||
rewFileRelation.setFileName(filename);
|
|
||||||
rewFileRelation.setFileCode(fileCode);
|
|
||||||
rewFileRelation.setFilePath(url);
|
|
||||||
rewFileRelation.setRealName(FileUtils.getNameNotSuffix(file.getOriginalFilename()));
|
|
||||||
fileRelations.add(rewFileRelation);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fileRelationService.saveBatch(fileRelations);
|
|
||||||
return fileRelations;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 获取文件路劲
|
|
||||||
* @param fileId
|
|
||||||
* @return java.lang.String
|
|
||||||
*/
|
|
||||||
public String getFilePath(String fileId){
|
|
||||||
RewFileRelation fileRelation = fileRelationService.getById(fileId);
|
|
||||||
if(Objects.nonNull(fileRelation)){
|
|
||||||
return fileRelation.getFilePath();
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 获取文件名
|
|
||||||
* @param fileId
|
|
||||||
* @return java.lang.String
|
|
||||||
*/
|
|
||||||
public String getRealName(String fileId){
|
|
||||||
RewFileRelation fileRelation = fileRelationService.getById(fileId);
|
|
||||||
if(Objects.nonNull(fileRelation)){
|
|
||||||
return fileRelation.getRealName();
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 文件列表啥
|
|
||||||
* @param applyId
|
|
||||||
* @param fileCode
|
|
||||||
* @return java.util.List<com.hyp.system.domain.RewFileRelation>
|
|
||||||
*/
|
|
||||||
public List<RewFileRelation> getFileInfo(String applyId,String fileCode){
|
|
||||||
LambdaQueryWrapper<RewFileRelation> queryWrapper = new LambdaQueryWrapper<>();
|
|
||||||
queryWrapper.eq(RewFileRelation::getApplyId,applyId);
|
|
||||||
queryWrapper.eq(Objects.nonNull(fileCode), RewFileRelation::getFileCode, fileCode);
|
|
||||||
return fileRelationService.list(queryWrapper);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 文件列表啥
|
|
||||||
* @return java.util.List<com.hyp.system.domain.RewFileRelation>
|
|
||||||
*/
|
|
||||||
public RewFileRelation getRewFileRelation(String fileId){
|
|
||||||
return fileRelationService.getById(fileId);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,117 +0,0 @@
|
|||||||
package com.hyp.web.controller.manager;
|
|
||||||
|
|
||||||
import cn.hutool.core.convert.Convert;
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
||||||
import com.hyp.common.core.domain.entity.SysUser;
|
|
||||||
import com.hyp.common.core.domain.model.LoginUser;
|
|
||||||
import com.hyp.common.enums.ApplyStatusEnum;
|
|
||||||
import com.hyp.common.utils.SecurityUtils;
|
|
||||||
import com.hyp.common.utils.StringUtils;
|
|
||||||
import com.hyp.system.domain.RewApplyInfoList;
|
|
||||||
import com.hyp.system.domain.RewScoreInfo;
|
|
||||||
import com.hyp.system.domain.dto.ScoreInfoSaveDTO;
|
|
||||||
import com.hyp.system.domain.vo.RewScoreInfoVO;
|
|
||||||
import com.hyp.system.service.RewApplyInfoListService;
|
|
||||||
import com.hyp.system.service.RewScoreInfoService;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* packageName com.hyp.web.controller.manager
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @version JDK 8
|
|
||||||
* @className ScoreInfoManager
|
|
||||||
* @date 2024/4/12
|
|
||||||
* @description 评分
|
|
||||||
*/
|
|
||||||
@Component
|
|
||||||
public class ScoreInfoManager {
|
|
||||||
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private RewScoreInfoService scoreInfoService;
|
|
||||||
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private RewApplyInfoListService applyInfoListService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 保存
|
|
||||||
* @param scoreInfo
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
|
||||||
public boolean saveOrUpdate(ScoreInfoSaveDTO scoreInfo){
|
|
||||||
LoginUser loginUser = SecurityUtils.getLoginUser();
|
|
||||||
RewScoreInfo rewScoreInfo = Convert.convert(RewScoreInfo.class, scoreInfo);
|
|
||||||
rewScoreInfo.setCreateId(loginUser.getUserId());
|
|
||||||
if(StringUtils.isNotEmpty(scoreInfo.getScoreId())){
|
|
||||||
rewScoreInfo.setUpdateTime(new Date());
|
|
||||||
rewScoreInfo.setUpdateBy(loginUser.getUsername());
|
|
||||||
}else{
|
|
||||||
rewScoreInfo.setCreateTime(new Date());
|
|
||||||
rewScoreInfo.setCreateBy(loginUser.getUsername());
|
|
||||||
}
|
|
||||||
scoreInfoService.saveOrUpdate(rewScoreInfo);
|
|
||||||
return submit(rewScoreInfo.getApplyId());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 查询评分
|
|
||||||
* @param applyId
|
|
||||||
* @return java.util.List<com.hyp.system.domain.RewScoreInfo>
|
|
||||||
*/
|
|
||||||
public RewScoreInfoVO getScoreInfo(String applyId){
|
|
||||||
RewScoreInfoVO rewScoreInfoVO = new RewScoreInfoVO();
|
|
||||||
LambdaQueryWrapper<RewScoreInfo> queryWrapper = new LambdaQueryWrapper<>();
|
|
||||||
queryWrapper.eq(RewScoreInfo::getApplyId,applyId);
|
|
||||||
if (!SysUser.isAdmin(SecurityUtils.getUserId())){
|
|
||||||
queryWrapper.eq(RewScoreInfo::getCreateId, SecurityUtils.getUserId());
|
|
||||||
}else {
|
|
||||||
rewScoreInfoVO.setAvgScore(avgRewScore(applyId));
|
|
||||||
}
|
|
||||||
queryWrapper.orderByDesc(RewScoreInfo::getScore);
|
|
||||||
List<RewScoreInfo> list = scoreInfoService.list(queryWrapper);
|
|
||||||
rewScoreInfoVO.setRewScoreInfos(list);
|
|
||||||
return rewScoreInfoVO;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 评分提交
|
|
||||||
* @param applyId
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public boolean submit(String applyId){
|
|
||||||
return applyInfoListService.lambdaUpdate()
|
|
||||||
.eq(RewApplyInfoList::getApplyId, applyId)
|
|
||||||
.set(RewApplyInfoList::getApplyStatus, ApplyStatusEnum.END.getType())
|
|
||||||
.set(RewApplyInfoList::getUpdateTime, new Date())
|
|
||||||
.update();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 查询平均分
|
|
||||||
* @param applyId
|
|
||||||
* @return java.lang.String
|
|
||||||
*/
|
|
||||||
|
|
||||||
public String avgRewScore(String applyId){
|
|
||||||
return scoreInfoService.avgRewScore(applyId);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,80 +0,0 @@
|
|||||||
package com.hyp.web.controller.reward;
|
|
||||||
|
|
||||||
import com.hyp.common.annotation.Log;
|
|
||||||
import com.hyp.common.core.controller.BaseController;
|
|
||||||
import com.hyp.common.core.domain.AjaxResult;
|
|
||||||
import com.hyp.common.core.page.TableDataInfo;
|
|
||||||
import com.hyp.common.enums.BusinessType;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListSaveDTO;
|
|
||||||
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
||||||
import com.hyp.web.controller.manager.ApplyInfoListManager;
|
|
||||||
import io.swagger.annotations.Api;
|
|
||||||
import io.swagger.annotations.ApiOperation;
|
|
||||||
import org.springframework.validation.annotation.Validated;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* packageName com.hyp.web.controller.apply
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @version JDK 8
|
|
||||||
* @className ApplyController
|
|
||||||
* @date 2024/4/10
|
|
||||||
* @description 优秀学校奖申请
|
|
||||||
*/
|
|
||||||
@Api("申请")
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/reward/apply")
|
|
||||||
public class ApplyController extends BaseController {
|
|
||||||
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private ApplyInfoListManager applyInfoListManager;
|
|
||||||
|
|
||||||
@ApiOperation("申请列表")
|
|
||||||
@GetMapping("/list")
|
|
||||||
public TableDataInfo list(ApplyInfoListDTO applyInfoListDTO) {
|
|
||||||
startPage();
|
|
||||||
List<ApplyInfoListVO> list = applyInfoListManager.selectApplyInfoList(applyInfoListDTO);
|
|
||||||
return getDataTable(list);
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("根据奖项类型生成applyId")
|
|
||||||
@Log(title = "申请保存", businessType = BusinessType.INSERT)
|
|
||||||
@GetMapping(value = "/getApplyId")
|
|
||||||
public AjaxResult getApplyId(@RequestParam String applyType) {
|
|
||||||
return success(applyInfoListManager.getApplyId(applyType));
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("提交申请")
|
|
||||||
@Log(title = "提交申请", businessType = BusinessType.UPDATE)
|
|
||||||
@PostMapping("/submit")
|
|
||||||
public AjaxResult submit(@Validated @RequestBody ApplyInfoListSaveDTO applyInfoSaveDTO) {
|
|
||||||
return toAjax(applyInfoListManager.submit(applyInfoSaveDTO));
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("删除申请")
|
|
||||||
@Log(title = "删除申请", businessType = BusinessType.DELETE)
|
|
||||||
@DeleteMapping("/delete/{applyId}")
|
|
||||||
public AjaxResult delete(@PathVariable String applyId) {
|
|
||||||
return toAjax(applyInfoListManager.deleteById(applyId));
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("申请详细")
|
|
||||||
@GetMapping(value = "/detail/{applyId}")
|
|
||||||
public AjaxResult detail(@PathVariable String applyId) {
|
|
||||||
return success(applyInfoListManager.detail(applyId));
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("材料上传校验")
|
|
||||||
@GetMapping("/checkUploadFile")
|
|
||||||
public AjaxResult checkUploadFile(@RequestParam String applyId,
|
|
||||||
@RequestParam String applyType){
|
|
||||||
return applyInfoListManager.checkUploadFile(applyId,applyType);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,55 +0,0 @@
|
|||||||
package com.hyp.web.controller.reward;
|
|
||||||
|
|
||||||
import com.hyp.common.core.controller.BaseController;
|
|
||||||
import com.hyp.common.core.domain.AjaxResult;
|
|
||||||
import com.hyp.common.core.page.TableDataInfo;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
||||||
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
||||||
import com.hyp.web.controller.manager.ApplyInfoListManager;
|
|
||||||
import io.swagger.annotations.Api;
|
|
||||||
import io.swagger.annotations.ApiOperation;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* packageName com.hyp.web.controller.reward
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @version JDK 8
|
|
||||||
* @className AuditController
|
|
||||||
* @date 2024/4/15
|
|
||||||
* @description 审核
|
|
||||||
*/
|
|
||||||
@Api("审核")
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/reward/audit")
|
|
||||||
public class AuditController extends BaseController {
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private ApplyInfoListManager applyInfoListManager;
|
|
||||||
|
|
||||||
@ApiOperation("审核列表")
|
|
||||||
@GetMapping("/list")
|
|
||||||
public TableDataInfo list(ApplyInfoListDTO applyInfoListDTO) {
|
|
||||||
startPage();
|
|
||||||
List<ApplyInfoListVO> list = applyInfoListManager.selectAduitInfoList(applyInfoListDTO);
|
|
||||||
return getDataTable(list);
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("审核通过")
|
|
||||||
@GetMapping(value = "/approved/{applyId}")
|
|
||||||
public AjaxResult approved(@PathVariable String applyId) {
|
|
||||||
return toAjax(applyInfoListManager.approved(applyId));
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("审核不通过")
|
|
||||||
@GetMapping(value = "/applyBack")
|
|
||||||
public AjaxResult applyBack(@RequestParam String applyId,
|
|
||||||
@RequestParam(required = false) String applyMsg) {
|
|
||||||
return toAjax(applyInfoListManager.applyBack(applyId,applyMsg));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,79 +0,0 @@
|
|||||||
package com.hyp.web.controller.reward;
|
|
||||||
|
|
||||||
import com.hyp.common.annotation.Log;
|
|
||||||
import com.hyp.common.core.controller.BaseController;
|
|
||||||
import com.hyp.common.core.domain.AjaxResult;
|
|
||||||
import com.hyp.common.core.page.TableDataInfo;
|
|
||||||
import com.hyp.common.enums.BusinessType;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
||||||
import com.hyp.system.domain.dto.ScoreInfoSaveDTO;
|
|
||||||
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
||||||
import com.hyp.web.controller.manager.ApplyInfoListManager;
|
|
||||||
import com.hyp.web.controller.manager.ScoreInfoManager;
|
|
||||||
import io.swagger.annotations.Api;
|
|
||||||
import io.swagger.annotations.ApiOperation;
|
|
||||||
import org.springframework.validation.annotation.Validated;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* packageName com.hyp.web.controller.reward
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @version JDK 8
|
|
||||||
* @className RewScoreInfoController
|
|
||||||
* @date 2024/4/12
|
|
||||||
* @description 评分
|
|
||||||
*/
|
|
||||||
@Api("评分")
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/reward/score")
|
|
||||||
public class ScoreInfoController extends BaseController {
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private ScoreInfoManager scoreInfoManager;
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private ApplyInfoListManager applyInfoListManager;
|
|
||||||
|
|
||||||
|
|
||||||
@ApiOperation("评分列表")
|
|
||||||
@GetMapping("/list")
|
|
||||||
public TableDataInfo list(ApplyInfoListDTO applyInfoListDTO) {
|
|
||||||
startPage();
|
|
||||||
List<ApplyInfoListVO> list = applyInfoListManager.selectScoreInfoList(applyInfoListDTO);
|
|
||||||
return getDataTable(list);
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("评分保存")
|
|
||||||
@Log(title = "评分保存", businessType = BusinessType.INSERT)
|
|
||||||
@PostMapping("/save")
|
|
||||||
public AjaxResult save(@Validated @RequestBody ScoreInfoSaveDTO scoreInfo) {
|
|
||||||
return toAjax(scoreInfoManager.saveOrUpdate(scoreInfo));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ApiOperation("评分查询")
|
|
||||||
@GetMapping("/getScoreInfo")
|
|
||||||
public AjaxResult getScoreInfo(@RequestParam String applyId) {
|
|
||||||
return success(scoreInfoManager.getScoreInfo(applyId));
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("评分提交")
|
|
||||||
@GetMapping(value = "/submit/{applyId}")
|
|
||||||
public AjaxResult submit(@PathVariable String applyId) {
|
|
||||||
return toAjax(scoreInfoManager.submit(applyId));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
com.hyp.framework.web.service.CaptchaRedisService
|
|
@ -1,23 +0,0 @@
|
|||||||
package com.hyp;
|
|
||||||
|
|
||||||
|
|
||||||
import com.hyp.common.constant.HttpStatus;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
|
||||||
import org.springframework.test.annotation.Rollback;
|
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
|
||||||
import org.junit.jupiter.api.Assertions;
|
|
||||||
|
|
||||||
@SpringBootTest
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
|
||||||
@Rollback
|
|
||||||
public class HypApplicationTest {
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void test(){
|
|
||||||
Assertions.assertEquals(200, HttpStatus.SUCCESS);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,24 +0,0 @@
|
|||||||
package com.hyp.manager;
|
|
||||||
|
|
||||||
import com.hyp.HypApplicationTest;
|
|
||||||
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
||||||
import com.hyp.web.controller.manager.ApplyInfoListManager;
|
|
||||||
import org.junit.jupiter.api.Assertions;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
|
|
||||||
|
|
||||||
class ApplyInfoListManagerTest extends HypApplicationTest {
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private ApplyInfoListManager applyInfoListManager;
|
|
||||||
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void objectTest() {
|
|
||||||
ApplyInfoListVO detail = applyInfoListManager.detail("1c1e0cfeec36fa881d7cb8d82dd9d036");
|
|
||||||
Assertions.assertNotNull(detail);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,32 +0,0 @@
|
|||||||
package com.hyp.common.enums;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 申请状态
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @date 2024/4/11 9:15
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
public enum ApplyStatusEnum {
|
|
||||||
|
|
||||||
SAVE(0, "待提交"),
|
|
||||||
|
|
||||||
SUBMIT(1, "待审核"),
|
|
||||||
|
|
||||||
AUDIT(2, "待评分"),
|
|
||||||
|
|
||||||
BACK(3, "已退回"),
|
|
||||||
|
|
||||||
END(4, "已评分");
|
|
||||||
|
|
||||||
private Integer type;
|
|
||||||
|
|
||||||
private String desc;
|
|
||||||
|
|
||||||
ApplyStatusEnum(Integer type, String desc) {
|
|
||||||
this.type = type;
|
|
||||||
this.desc = desc;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,32 +0,0 @@
|
|||||||
package com.hyp.common.enums;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 奖项类型
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @date 2024/4/11 9:15
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
public enum ApplyTypeEnum {
|
|
||||||
|
|
||||||
CATEGORY("rew_excellent_category", "优秀学校奖(学校类)"),
|
|
||||||
|
|
||||||
TRAINING("rew_excellent_training", "优秀学校奖(培训机构类)"),
|
|
||||||
|
|
||||||
PRINCIPAL("rew_principal_award", "杰出校长奖"),
|
|
||||||
|
|
||||||
TEACHER("rew_teacher_award", "杰出教师奖"),
|
|
||||||
|
|
||||||
CONTRIBUTION("rew_contribution_award", "杰出贡献奖");
|
|
||||||
|
|
||||||
private String type;
|
|
||||||
|
|
||||||
private String desc;
|
|
||||||
|
|
||||||
ApplyTypeEnum(String type, String desc) {
|
|
||||||
this.type = type;
|
|
||||||
this.desc = desc;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,155 +0,0 @@
|
|||||||
package com.hyp.common.utils.sign;
|
|
||||||
|
|
||||||
import org.apache.commons.codec.binary.Base64;
|
|
||||||
import javax.crypto.Cipher;
|
|
||||||
import java.security.*;
|
|
||||||
import java.security.interfaces.RSAPrivateKey;
|
|
||||||
import java.security.interfaces.RSAPublicKey;
|
|
||||||
import java.security.spec.PKCS8EncodedKeySpec;
|
|
||||||
import java.security.spec.X509EncodedKeySpec;
|
|
||||||
/**
|
|
||||||
* packageName com.hyp.common.utils.sign
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @version JDK 8
|
|
||||||
* @className RsaUtils
|
|
||||||
* @date 2024/4/28
|
|
||||||
* @description RSA加密解密
|
|
||||||
*/
|
|
||||||
public class RsaUtils {
|
|
||||||
|
|
||||||
// Rsa 私钥
|
|
||||||
public static String privateKey = "MIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAqhHyZfSsYourNxaY"
|
|
||||||
+ "7Nt+PrgrxkiA50efORdI5U5lsW79MmFnusUA355oaSXcLhu5xxB38SMSyP2KvuKN"
|
|
||||||
+ "PuH3owIDAQABAkAfoiLyL+Z4lf4Myxk6xUDgLaWGximj20CUf+5BKKnlrK+Ed8gA"
|
|
||||||
+ "kM0HqoTt2UZwA5E2MzS4EI2gjfQhz5X28uqxAiEA3wNFxfrCZlSZHb0gn2zDpWow"
|
|
||||||
+ "cSxQAgiCstxGUoOqlW8CIQDDOerGKH5OmCJ4Z21v+F25WaHYPxCFMvwxpcw99Ecv"
|
|
||||||
+ "DQIgIdhDTIqD2jfYjPTY8Jj3EDGPbH2HHuffvflECt3Ek60CIQCFRlCkHpi7hthh"
|
|
||||||
+ "YhovyloRYsM+IS9h/0BzlEAuO0ktMQIgSPT3aFAgJYwKpqRYKlLDVcflZFCKY7u3"
|
|
||||||
+ "UP8iWi1Qw0Y=";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 私钥解密
|
|
||||||
*
|
|
||||||
* @param text 待解密的文本
|
|
||||||
* @return 解密后的文本
|
|
||||||
*/
|
|
||||||
public static String decryptByPrivateKey(String text) throws Exception
|
|
||||||
{
|
|
||||||
return decryptByPrivateKey(privateKey, text);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 公钥解密
|
|
||||||
*
|
|
||||||
* @param publicKeyString 公钥
|
|
||||||
* @param text 待解密的信息
|
|
||||||
* @return 解密后的文本
|
|
||||||
*/
|
|
||||||
public static String decryptByPublicKey(String publicKeyString, String text) throws Exception
|
|
||||||
{
|
|
||||||
X509EncodedKeySpec x509EncodedKeySpec = new X509EncodedKeySpec(Base64.decodeBase64(publicKeyString));
|
|
||||||
KeyFactory keyFactory = KeyFactory.getInstance("RSA");
|
|
||||||
PublicKey publicKey = keyFactory.generatePublic(x509EncodedKeySpec);
|
|
||||||
Cipher cipher = Cipher.getInstance("RSA");
|
|
||||||
cipher.init(Cipher.DECRYPT_MODE, publicKey);
|
|
||||||
byte[] result = cipher.doFinal(Base64.decodeBase64(text));
|
|
||||||
return new String(result);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 私钥加密
|
|
||||||
*
|
|
||||||
* @param privateKeyString 私钥
|
|
||||||
* @param text 待加密的信息
|
|
||||||
* @return 加密后的文本
|
|
||||||
*/
|
|
||||||
public static String encryptByPrivateKey(String privateKeyString, String text) throws Exception
|
|
||||||
{
|
|
||||||
PKCS8EncodedKeySpec pkcs8EncodedKeySpec = new PKCS8EncodedKeySpec(Base64.decodeBase64(privateKeyString));
|
|
||||||
KeyFactory keyFactory = KeyFactory.getInstance("RSA");
|
|
||||||
PrivateKey privateKey = keyFactory.generatePrivate(pkcs8EncodedKeySpec);
|
|
||||||
Cipher cipher = Cipher.getInstance("RSA");
|
|
||||||
cipher.init(Cipher.ENCRYPT_MODE, privateKey);
|
|
||||||
byte[] result = cipher.doFinal(text.getBytes());
|
|
||||||
return Base64.encodeBase64String(result);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 私钥解密
|
|
||||||
*
|
|
||||||
* @param privateKeyString 私钥
|
|
||||||
* @param text 待解密的文本
|
|
||||||
* @return 解密后的文本
|
|
||||||
*/
|
|
||||||
public static String decryptByPrivateKey(String privateKeyString, String text) throws Exception
|
|
||||||
{
|
|
||||||
PKCS8EncodedKeySpec pkcs8EncodedKeySpec5 = new PKCS8EncodedKeySpec(Base64.decodeBase64(privateKeyString));
|
|
||||||
KeyFactory keyFactory = KeyFactory.getInstance("RSA");
|
|
||||||
PrivateKey privateKey = keyFactory.generatePrivate(pkcs8EncodedKeySpec5);
|
|
||||||
Cipher cipher = Cipher.getInstance("RSA");
|
|
||||||
cipher.init(Cipher.DECRYPT_MODE, privateKey);
|
|
||||||
byte[] result = cipher.doFinal(Base64.decodeBase64(text));
|
|
||||||
return new String(result);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 公钥加密
|
|
||||||
*
|
|
||||||
* @param publicKeyString 公钥
|
|
||||||
* @param text 待加密的文本
|
|
||||||
* @return 加密后的文本
|
|
||||||
*/
|
|
||||||
public static String encryptByPublicKey(String publicKeyString, String text) throws Exception
|
|
||||||
{
|
|
||||||
X509EncodedKeySpec x509EncodedKeySpec2 = new X509EncodedKeySpec(Base64.decodeBase64(publicKeyString));
|
|
||||||
KeyFactory keyFactory = KeyFactory.getInstance("RSA");
|
|
||||||
PublicKey publicKey = keyFactory.generatePublic(x509EncodedKeySpec2);
|
|
||||||
Cipher cipher = Cipher.getInstance("RSA");
|
|
||||||
cipher.init(Cipher.ENCRYPT_MODE, publicKey);
|
|
||||||
byte[] result = cipher.doFinal(text.getBytes());
|
|
||||||
return Base64.encodeBase64String(result);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 构建RSA密钥对
|
|
||||||
*
|
|
||||||
* @return 生成后的公私钥信息
|
|
||||||
*/
|
|
||||||
public static RsaKeyPair generateKeyPair() throws NoSuchAlgorithmException
|
|
||||||
{
|
|
||||||
KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA");
|
|
||||||
keyPairGenerator.initialize(1024);
|
|
||||||
KeyPair keyPair = keyPairGenerator.generateKeyPair();
|
|
||||||
RSAPublicKey rsaPublicKey = (RSAPublicKey) keyPair.getPublic();
|
|
||||||
RSAPrivateKey rsaPrivateKey = (RSAPrivateKey) keyPair.getPrivate();
|
|
||||||
String publicKeyString = Base64.encodeBase64String(rsaPublicKey.getEncoded());
|
|
||||||
String privateKeyString = Base64.encodeBase64String(rsaPrivateKey.getEncoded());
|
|
||||||
return new RsaKeyPair(publicKeyString, privateKeyString);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* RSA密钥对对象
|
|
||||||
*/
|
|
||||||
public static class RsaKeyPair
|
|
||||||
{
|
|
||||||
private final String publicKey;
|
|
||||||
private final String privateKey;
|
|
||||||
|
|
||||||
public RsaKeyPair(String publicKey, String privateKey)
|
|
||||||
{
|
|
||||||
this.publicKey = publicKey;
|
|
||||||
this.privateKey = privateKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPublicKey()
|
|
||||||
{
|
|
||||||
return publicKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPrivateKey()
|
|
||||||
{
|
|
||||||
return privateKey;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,68 @@
|
|||||||
|
package com.hyp.framework.config;
|
||||||
|
|
||||||
|
import java.util.Random;
|
||||||
|
import com.google.code.kaptcha.text.impl.DefaultTextCreator;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 验证码文本生成器
|
||||||
|
*
|
||||||
|
* @author ruoyi
|
||||||
|
*/
|
||||||
|
public class KaptchaTextCreator extends DefaultTextCreator
|
||||||
|
{
|
||||||
|
private static final String[] CNUMBERS = "0,1,2,3,4,5,6,7,8,9,10".split(",");
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getText()
|
||||||
|
{
|
||||||
|
Integer result = 0;
|
||||||
|
Random random = new Random();
|
||||||
|
int x = random.nextInt(10);
|
||||||
|
int y = random.nextInt(10);
|
||||||
|
StringBuilder suChinese = new StringBuilder();
|
||||||
|
int randomoperands = random.nextInt(3);
|
||||||
|
if (randomoperands == 0)
|
||||||
|
{
|
||||||
|
result = x * y;
|
||||||
|
suChinese.append(CNUMBERS[x]);
|
||||||
|
suChinese.append("*");
|
||||||
|
suChinese.append(CNUMBERS[y]);
|
||||||
|
}
|
||||||
|
else if (randomoperands == 1)
|
||||||
|
{
|
||||||
|
if ((x != 0) && y % x == 0)
|
||||||
|
{
|
||||||
|
result = y / x;
|
||||||
|
suChinese.append(CNUMBERS[y]);
|
||||||
|
suChinese.append("/");
|
||||||
|
suChinese.append(CNUMBERS[x]);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = x + y;
|
||||||
|
suChinese.append(CNUMBERS[x]);
|
||||||
|
suChinese.append("+");
|
||||||
|
suChinese.append(CNUMBERS[y]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (x >= y)
|
||||||
|
{
|
||||||
|
result = x - y;
|
||||||
|
suChinese.append(CNUMBERS[x]);
|
||||||
|
suChinese.append("-");
|
||||||
|
suChinese.append(CNUMBERS[y]);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = y - x;
|
||||||
|
suChinese.append(CNUMBERS[y]);
|
||||||
|
suChinese.append("-");
|
||||||
|
suChinese.append(CNUMBERS[x]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
suChinese.append("=?@" + result);
|
||||||
|
return suChinese.toString();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,134 @@
|
|||||||
|
package com.hyp.framework.config;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.sql.DataSource;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean;
|
||||||
|
import org.apache.ibatis.io.VFS;
|
||||||
|
import org.apache.ibatis.session.SqlSessionFactory;
|
||||||
|
import org.mybatis.spring.boot.autoconfigure.SpringBootVFS;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.core.env.Environment;
|
||||||
|
import org.springframework.core.io.DefaultResourceLoader;
|
||||||
|
import org.springframework.core.io.Resource;
|
||||||
|
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
|
||||||
|
import org.springframework.core.io.support.ResourcePatternResolver;
|
||||||
|
import org.springframework.core.type.classreading.CachingMetadataReaderFactory;
|
||||||
|
import org.springframework.core.type.classreading.MetadataReader;
|
||||||
|
import org.springframework.core.type.classreading.MetadataReaderFactory;
|
||||||
|
import org.springframework.util.ClassUtils;
|
||||||
|
import com.hyp.common.utils.StringUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mybatis支持*匹配扫描包
|
||||||
|
*
|
||||||
|
* @author ruoyi
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
public class MyBatisConfig
|
||||||
|
{
|
||||||
|
@Autowired
|
||||||
|
private Environment env;
|
||||||
|
|
||||||
|
static final String DEFAULT_RESOURCE_PATTERN = "**/*.class";
|
||||||
|
|
||||||
|
public static String setTypeAliasesPackage(String typeAliasesPackage)
|
||||||
|
{
|
||||||
|
ResourcePatternResolver resolver = (ResourcePatternResolver) new PathMatchingResourcePatternResolver();
|
||||||
|
MetadataReaderFactory metadataReaderFactory = new CachingMetadataReaderFactory(resolver);
|
||||||
|
List<String> allResult = new ArrayList<String>();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
for (String aliasesPackage : typeAliasesPackage.split(","))
|
||||||
|
{
|
||||||
|
List<String> result = new ArrayList<String>();
|
||||||
|
aliasesPackage = ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX
|
||||||
|
+ ClassUtils.convertClassNameToResourcePath(aliasesPackage.trim()) + "/" + DEFAULT_RESOURCE_PATTERN;
|
||||||
|
Resource[] resources = resolver.getResources(aliasesPackage);
|
||||||
|
if (resources != null && resources.length > 0)
|
||||||
|
{
|
||||||
|
MetadataReader metadataReader = null;
|
||||||
|
for (Resource resource : resources)
|
||||||
|
{
|
||||||
|
if (resource.isReadable())
|
||||||
|
{
|
||||||
|
metadataReader = metadataReaderFactory.getMetadataReader(resource);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
result.add(Class.forName(metadataReader.getClassMetadata().getClassName()).getPackage().getName());
|
||||||
|
}
|
||||||
|
catch (ClassNotFoundException e)
|
||||||
|
{
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (result.size() > 0)
|
||||||
|
{
|
||||||
|
HashSet<String> hashResult = new HashSet<String>(result);
|
||||||
|
allResult.addAll(hashResult);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (allResult.size() > 0)
|
||||||
|
{
|
||||||
|
typeAliasesPackage = String.join(",", (String[]) allResult.toArray(new String[0]));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
throw new RuntimeException("mybatis typeAliasesPackage 路径扫描错误,参数typeAliasesPackage:" + typeAliasesPackage + "未找到任何包");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (IOException e)
|
||||||
|
{
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return typeAliasesPackage;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Resource[] resolveMapperLocations(String[] mapperLocations)
|
||||||
|
{
|
||||||
|
ResourcePatternResolver resourceResolver = new PathMatchingResourcePatternResolver();
|
||||||
|
List<Resource> resources = new ArrayList<Resource>();
|
||||||
|
if (mapperLocations != null)
|
||||||
|
{
|
||||||
|
for (String mapperLocation : mapperLocations)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Resource[] mappers = resourceResolver.getResources(mapperLocation);
|
||||||
|
resources.addAll(Arrays.asList(mappers));
|
||||||
|
}
|
||||||
|
catch (IOException e)
|
||||||
|
{
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return resources.toArray(new Resource[resources.size()]);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public SqlSessionFactory sqlSessionFactory(DataSource dataSource) throws Exception
|
||||||
|
{
|
||||||
|
String typeAliasesPackage = env.getProperty("mybatis.typeAliasesPackage");
|
||||||
|
String mapperLocations = env.getProperty("mybatis.mapperLocations");
|
||||||
|
String configLocation = env.getProperty("mybatis.configLocation");
|
||||||
|
typeAliasesPackage = setTypeAliasesPackage(typeAliasesPackage);
|
||||||
|
VFS.addImplClass(SpringBootVFS.class);
|
||||||
|
|
||||||
|
//final SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean();
|
||||||
|
final MybatisSqlSessionFactoryBean sessionFactory = new MybatisSqlSessionFactoryBean();
|
||||||
|
sessionFactory.setDataSource(dataSource);
|
||||||
|
sessionFactory.setTypeAliasesPackage(typeAliasesPackage);
|
||||||
|
sessionFactory.setMapperLocations(resolveMapperLocations(StringUtils.split(mapperLocations, ",")));
|
||||||
|
sessionFactory.setConfigLocation(new DefaultResourceLoader().getResource(configLocation));
|
||||||
|
return sessionFactory.getObject();
|
||||||
|
}
|
||||||
|
}
|
@ -1,58 +0,0 @@
|
|||||||
package com.hyp.framework.web.service;
|
|
||||||
|
|
||||||
import java.util.concurrent.TimeUnit;
|
|
||||||
import org.springframework.data.redis.core.StringRedisTemplate;
|
|
||||||
import com.anji.captcha.service.CaptchaCacheService;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* packageName com.hyp.framework.web.service
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @version JDK 8
|
|
||||||
* @className CaptchaRedisService
|
|
||||||
* @date 2024/4/28
|
|
||||||
* @description
|
|
||||||
*/
|
|
||||||
public class CaptchaRedisService implements CaptchaCacheService {
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private StringRedisTemplate stringRedisTemplate;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void set(String key, String value, long expiresInSeconds)
|
|
||||||
{
|
|
||||||
stringRedisTemplate.opsForValue().set(key, value, expiresInSeconds, TimeUnit.SECONDS);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean exists(String key)
|
|
||||||
{
|
|
||||||
return Boolean.TRUE.equals(stringRedisTemplate.hasKey(key));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void delete(String key)
|
|
||||||
{
|
|
||||||
stringRedisTemplate.delete(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String get(String key)
|
|
||||||
{
|
|
||||||
return stringRedisTemplate.opsForValue().get(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Long increment(String key, long val)
|
|
||||||
{
|
|
||||||
return stringRedisTemplate.opsForValue().increment(key, val);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String type()
|
|
||||||
{
|
|
||||||
return "redis";
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,49 +0,0 @@
|
|||||||
package com.hyp.system.domain;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableField;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import java.io.Serializable;
|
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
import com.hyp.common.core.domain.BaseEntity;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import lombok.experimental.Accessors;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 评分表
|
|
||||||
* @author wangxy
|
|
||||||
* @TableName rew_score_info
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = false)
|
|
||||||
@Accessors(chain = true)
|
|
||||||
public class RewScoreInfo extends BaseEntity {
|
|
||||||
/**
|
|
||||||
* 主键
|
|
||||||
*/
|
|
||||||
@TableId(type = IdType.ASSIGN_UUID)
|
|
||||||
private String scoreId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 评分
|
|
||||||
*/
|
|
||||||
private String score;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 申请id
|
|
||||||
*/
|
|
||||||
private String applyId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建者id
|
|
||||||
*/
|
|
||||||
private Long createId;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
}
|
|
@ -1,40 +0,0 @@
|
|||||||
package com.hyp.system.domain.dto;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
|
||||||
import javax.validation.constraints.NotNull;
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* packageName com.hyp.system.domain.dto
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @version JDK 8
|
|
||||||
* @className ApplyInfoListSaveDTO
|
|
||||||
* @date 2024/4/11
|
|
||||||
* @description 提交参数
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class ApplyInfoListSaveDTO implements Serializable {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 申请id
|
|
||||||
*/
|
|
||||||
@NotBlank(message = "申请id不能为空")
|
|
||||||
private String applyId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否获得过奖
|
|
||||||
*/
|
|
||||||
@NotNull(message = "是否获得过奖不能为空")
|
|
||||||
private Integer isReward;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,36 +0,0 @@
|
|||||||
package com.hyp.system.domain.dto;
|
|
||||||
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableField;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 评分表
|
|
||||||
* @author wangxy
|
|
||||||
* @TableName rew_score_info
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class ScoreInfoSaveDTO implements Serializable {
|
|
||||||
/**
|
|
||||||
* 主键
|
|
||||||
*/
|
|
||||||
private String scoreId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 评分
|
|
||||||
*/
|
|
||||||
private String score;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 申请id
|
|
||||||
*/
|
|
||||||
@NotBlank(message = "申请id不能为空")
|
|
||||||
private String applyId;
|
|
||||||
|
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
}
|
|
@ -1,29 +0,0 @@
|
|||||||
package com.hyp.system.domain.vo;
|
|
||||||
|
|
||||||
import com.hyp.system.domain.RewScoreInfo;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* packageName com.hyp.system.domain.vo
|
|
||||||
*
|
|
||||||
* @author wangxy
|
|
||||||
* @version JDK 8
|
|
||||||
* @className RewScoreInfoVO
|
|
||||||
* @date 2024/4/23
|
|
||||||
* @description 查询评分
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class RewScoreInfoVO implements Serializable {
|
|
||||||
|
|
||||||
|
|
||||||
private List<RewScoreInfo> rewScoreInfos;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 平均分
|
|
||||||
*/
|
|
||||||
private String avgScore;
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
package com.hyp.system.mapper;
|
|
||||||
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
||||||
import com.hyp.system.domain.RewApplyInfoList;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
||||||
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author wangxy
|
|
||||||
* @description 针对表【rew_apply_info_list(奖项申请流程表)】的数据库操作Mapper
|
|
||||||
* @createDate 2024-04-11 09:11:34
|
|
||||||
* @Entity generator.domain.RewApplyInfoList
|
|
||||||
*/
|
|
||||||
@Mapper
|
|
||||||
public interface RewApplyInfoListMapper extends BaseMapper<RewApplyInfoList> {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 查询列表
|
|
||||||
* @param applyInfoListDTO
|
|
||||||
* @return java.util.List<com.hyp.system.domain.vo.ApplyInfoListVO>
|
|
||||||
*/
|
|
||||||
List<ApplyInfoListVO> selectApplyInfoList(ApplyInfoListDTO applyInfoListDTO);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
|||||||
package com.hyp.system.mapper;
|
|
||||||
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
||||||
import com.hyp.system.domain.RewFileRelation;
|
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author 13560
|
|
||||||
* @description 针对表【rew_file_relation(奖项文件表)】的数据库操作Mapper
|
|
||||||
* @createDate 2024-04-11 09:17:57
|
|
||||||
* @Entity generator.domain.RewFileRelation
|
|
||||||
*/
|
|
||||||
@Mapper
|
|
||||||
public interface RewFileRelationMapper extends BaseMapper<RewFileRelation> {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,28 +0,0 @@
|
|||||||
package com.hyp.system.mapper;
|
|
||||||
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
||||||
import com.hyp.system.domain.RewScoreInfo;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
||||||
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author wangxy
|
|
||||||
* @description 针对表【rew_score_info(评分表)】的数据库操作Mapper
|
|
||||||
* @createDate 2024-04-11 09:20:53
|
|
||||||
* @Entity generator.domain.RewScoreInfo
|
|
||||||
*/
|
|
||||||
@Mapper
|
|
||||||
public interface RewScoreInfoMapper extends BaseMapper<RewScoreInfo> {
|
|
||||||
|
|
||||||
|
|
||||||
String avgRewScore(String applyId);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
|||||||
package com.hyp.system.service;
|
|
||||||
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
|
||||||
import com.hyp.system.domain.RewApplyInfoList;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
||||||
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author wangxy
|
|
||||||
* @description 针对表【rew_apply_info_list(奖项申请流程表)】的数据库操作Service
|
|
||||||
* @createDate 2024-04-11 09:11:34
|
|
||||||
*/
|
|
||||||
public interface RewApplyInfoListService extends IService<RewApplyInfoList> {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 查询列表
|
|
||||||
* @param applyInfoListDTO
|
|
||||||
* @return java.util.List<com.hyp.system.domain.vo.ApplyInfoListVO>
|
|
||||||
*/
|
|
||||||
List<ApplyInfoListVO> selectApplyInfoList(ApplyInfoListDTO applyInfoListDTO);
|
|
||||||
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
package com.hyp.system.service;
|
|
||||||
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
|
||||||
import com.hyp.system.domain.RewFileRelation;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author wangxy
|
|
||||||
* @description 针对表【rew_file_relation(奖项文件表)】的数据库操作Service
|
|
||||||
* @createDate 2024-04-11 09:17:57
|
|
||||||
*/
|
|
||||||
public interface RewFileRelationService extends IService<RewFileRelation> {
|
|
||||||
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
package com.hyp.system.service;
|
|
||||||
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
|
||||||
import com.hyp.system.domain.RewScoreInfo;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author wangxy
|
|
||||||
* @description 针对表【rew_score_info(评分表)】的数据库操作Service
|
|
||||||
* @createDate 2024-04-11 09:20:53
|
|
||||||
*/
|
|
||||||
public interface RewScoreInfoService extends IService<RewScoreInfo> {
|
|
||||||
|
|
||||||
|
|
||||||
String avgRewScore(String applyId);
|
|
||||||
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
package com.hyp.system.service.impl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
import com.hyp.system.domain.RewApplyInfoList;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
||||||
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
||||||
import com.hyp.system.mapper.RewApplyInfoListMapper;
|
|
||||||
import com.hyp.system.service.RewApplyInfoListService;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author wangxy
|
|
||||||
* @description 针对表【rew_apply_info_list(奖项申请流程表)】的数据库操作Service实现
|
|
||||||
* @createDate 2024-04-11 09:11:34
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class RewApplyInfoListServiceImpl extends ServiceImpl<RewApplyInfoListMapper, RewApplyInfoList>
|
|
||||||
implements RewApplyInfoListService {
|
|
||||||
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private RewApplyInfoListMapper applyInfoListMapper;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 列表查询
|
|
||||||
* @param applyInfoListDTO
|
|
||||||
* @return java.util.List<com.hyp.system.domain.vo.ApplyInfoListVO>
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<ApplyInfoListVO> selectApplyInfoList(ApplyInfoListDTO applyInfoListDTO)
|
|
||||||
{
|
|
||||||
return applyInfoListMapper.selectApplyInfoList(applyInfoListDTO);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
|||||||
package com.hyp.system.service.impl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
import com.hyp.system.domain.RewFileRelation;
|
|
||||||
import com.hyp.system.mapper.RewFileRelationMapper;
|
|
||||||
import com.hyp.system.service.RewFileRelationService;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author wangxy
|
|
||||||
* @description 针对表【rew_file_relation(奖项文件表)】的数据库操作Service实现
|
|
||||||
* @createDate 2024-04-11 09:17:57
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class RewFileRelationServiceImpl extends ServiceImpl<RewFileRelationMapper, RewFileRelation>
|
|
||||||
implements RewFileRelationService {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
|||||||
package com.hyp.system.service.impl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
import com.hyp.system.domain.RewScoreInfo;
|
|
||||||
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
||||||
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
||||||
import com.hyp.system.mapper.RewApplyInfoListMapper;
|
|
||||||
import com.hyp.system.mapper.RewScoreInfoMapper;
|
|
||||||
import com.hyp.system.service.RewScoreInfoService;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author wangxy
|
|
||||||
* @description 针对表【rew_score_info(评分表)】的数据库操作Service实现
|
|
||||||
* @createDate 2024-04-11 09:20:53
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class RewScoreInfoServiceImpl extends ServiceImpl<RewScoreInfoMapper, RewScoreInfo>
|
|
||||||
implements RewScoreInfoService {
|
|
||||||
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private RewScoreInfoMapper rewScoreInfoMapper;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 查询平均分
|
|
||||||
* @param applyId
|
|
||||||
* @return java.util.List<com.hyp.system.domain.vo.ApplyInfoListVO>
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public String avgRewScore(String applyId)
|
|
||||||
{
|
|
||||||
return rewScoreInfoMapper.avgRewScore(applyId);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE mapper
|
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
||||||
<mapper namespace="com.hyp.system.mapper.RewApplyInfoListMapper">
|
|
||||||
|
|
||||||
<resultMap id="BaseResultMap" type="com.hyp.system.domain.RewApplyInfoList">
|
|
||||||
<id property="applyId" column="apply_id" jdbcType="VARCHAR"/>
|
|
||||||
<result property="applyName" column="apply_name" jdbcType="VARCHAR"/>
|
|
||||||
<result property="applyType" column="apply_type" jdbcType="VARCHAR"/>
|
|
||||||
<result property="isReward" column="is_reward" jdbcType="INTEGER"/>
|
|
||||||
<result property="applyStatus" column="apply_status" jdbcType="INTEGER"/>
|
|
||||||
<result property="appTime" column="app_time" jdbcType="TIMESTAMP"/>
|
|
||||||
<result property="applyMsg" column="apply_msg" jdbcType="VARCHAR"/>
|
|
||||||
<result property="authTime" column="auth_time" jdbcType="TIMESTAMP"/>
|
|
||||||
<result property="createId" column="create_id" jdbcType="INTEGER"/>
|
|
||||||
<result property="createBy" column="create_by" jdbcType="VARCHAR"/>
|
|
||||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
||||||
<result property="updateBy" column="update_by" jdbcType="VARCHAR"/>
|
|
||||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
|
||||||
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
|
||||||
</resultMap>
|
|
||||||
|
|
||||||
<sql id="Base_Column_List">
|
|
||||||
apply_id,apply_name,apply_type,
|
|
||||||
is_reward,apply_status,app_time,
|
|
||||||
apply_msg,auth_time,create_id,
|
|
||||||
create_by,create_time,update_by,
|
|
||||||
update_time,remark
|
|
||||||
</sql>
|
|
||||||
<select id="selectApplyInfoList" parameterType="com.hyp.system.domain.dto.ApplyInfoListDTO" resultType="com.hyp.system.domain.vo.ApplyInfoListVO">
|
|
||||||
select <include refid="Base_Column_List"/>
|
|
||||||
from rew_apply_info_list t
|
|
||||||
<trim prefix="where" prefixOverrides="and|or">
|
|
||||||
<if test="applyName != null and applyName != ''">
|
|
||||||
and t.apply_name like concat('%',#{applyName},'%')
|
|
||||||
</if>
|
|
||||||
<if test="applyType != null and applyType != ''">
|
|
||||||
and t.apply_type = #{applyType}
|
|
||||||
</if>
|
|
||||||
<if test="createId != null">
|
|
||||||
and t.create_id = #{createId}
|
|
||||||
</if>
|
|
||||||
<if test="createBy != null and createBy != ''">
|
|
||||||
and t.create_by like concat('%',#{createBy},'%')
|
|
||||||
</if>
|
|
||||||
<if test="applyStatus != null and applyStatus != ''">
|
|
||||||
and apply_status in
|
|
||||||
<foreach item="item" index="index" collection="applyStatus.split(',')" open="(" separator="," close=")">'${item}'</foreach>
|
|
||||||
</if>
|
|
||||||
</trim>
|
|
||||||
order by t.update_time desc
|
|
||||||
</select>
|
|
||||||
</mapper>
|
|
@ -1,22 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE mapper
|
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
||||||
<mapper namespace="com.hyp.system.mapper.RewFileRelationMapper">
|
|
||||||
|
|
||||||
<resultMap id="BaseResultMap" type="com.hyp.system.domain.RewFileRelation">
|
|
||||||
<id property="fileId" column="file_id" jdbcType="VARCHAR"/>
|
|
||||||
<result property="applyId" column="apply_id" jdbcType="VARCHAR"/>
|
|
||||||
<result property="fileName" column="file_name" jdbcType="VARCHAR"/>
|
|
||||||
<result property="fileCode" column="file_code" jdbcType="VARCHAR"/>
|
|
||||||
<result property="filePath" column="file_path" jdbcType="VARCHAR"/>
|
|
||||||
<result property="realName" column="real_name" jdbcType="VARCHAR"/>
|
|
||||||
<result property="fileState" column="file_state" jdbcType="INTEGER"/>
|
|
||||||
</resultMap>
|
|
||||||
|
|
||||||
<sql id="Base_Column_List">
|
|
||||||
file_id,apply_id,file_name,
|
|
||||||
file_code,file_path,real_name,
|
|
||||||
file_state
|
|
||||||
</sql>
|
|
||||||
</mapper>
|
|
@ -1,27 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE mapper
|
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
||||||
<mapper namespace="com.hyp.system.mapper.RewScoreInfoMapper">
|
|
||||||
|
|
||||||
<resultMap id="BaseResultMap" type="com.hyp.system.domain.RewScoreInfo">
|
|
||||||
<id property="scoreId" column="score_id" jdbcType="VARCHAR"/>
|
|
||||||
<result property="score" column="score" jdbcType="VARCHAR"/>
|
|
||||||
<result property="applyId" column="apply_id" jdbcType="VARCHAR"/>
|
|
||||||
<result property="createId" column="create_id" jdbcType="INTEGER"/>
|
|
||||||
<result property="createBy" column="create_by" jdbcType="VARCHAR"/>
|
|
||||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
||||||
<result property="updateBy" column="update_by" jdbcType="VARCHAR"/>
|
|
||||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
|
||||||
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
|
||||||
</resultMap>
|
|
||||||
|
|
||||||
<sql id="Base_Column_List">
|
|
||||||
score_id,score,apply_id,
|
|
||||||
create_id,create_by,create_time,
|
|
||||||
update_by,update_time,remark
|
|
||||||
</sql>
|
|
||||||
<select id="avgRewScore" resultType="java.lang.String" parameterType="String">
|
|
||||||
SELECT AVG(t.score) as avgScore from rew_score_info t where t.apply_id = #{applyId}
|
|
||||||
</select>
|
|
||||||
</mapper>
|
|
Loading…
Reference in new issue