fix:生成applyId方法

dev
wangxy 12 months ago
parent c54adee9b7
commit 8ece7d658c

@ -3,13 +3,17 @@ package com.hyp.web.controller.manager;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.convert.Convert;
import com.hyp.common.core.domain.model.LoginUser;
import com.hyp.common.enums.ApplyTypeEnum;
import com.hyp.common.exception.ServiceException;
import com.hyp.common.utils.SecurityUtils;
import com.hyp.system.domain.RewApplyInfoList;
import com.hyp.system.domain.dto.ApplyInfoListDTO;
import com.hyp.system.domain.vo.ApplyInfoListVO;
import com.hyp.system.service.ISysDictDataService;
import com.hyp.system.service.RewApplyInfoListService;
import com.hyp.system.service.RewScoreInfoService;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
@ -34,6 +38,18 @@ public class ApplyInfoListManager {
@Resource
private RewScoreInfoService scoreInfoService;
@Resource
private ISysDictDataService dictDataService;
/**
*
*
* @param null
* @return
*/
private static final String REW_APPLY_TYPE = "rew_apply_type";
@ -61,6 +77,11 @@ public class ApplyInfoListManager {
}
RewApplyInfoList applyInfoList = new RewApplyInfoList();
applyInfoList.setApplyType(applyType);
String name = dictDataService.selectDictLabel(REW_APPLY_TYPE, applyType);
if(StringUtils.isNotBlank(name)){
applyInfoList.setApplyName(name);
}
applyInfoList.setApplyStatus(0);
applyInfoList.setCreateId(loginUser.getUserId());
applyInfoList.setCreateBy(loginUser.getUsername());

@ -143,6 +143,11 @@
<version>2.5.1</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
</project>

@ -0,0 +1,32 @@
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;
}
}
Loading…
Cancel
Save