| | |
| | | import freemarker.template.TemplateException; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.util.CollectionUtils; |
| | |
| | | * @author ruoyi |
| | | * @date 2021-11-15 |
| | | */ |
| | | @Slf4j |
| | | @Api("亲属确认管理") |
| | | @RestController |
| | | @RequestMapping("/project/relativesconfirmation") |
| | |
| | | @PostMapping("/add") |
| | | @RepeatSubmit |
| | | public AjaxResult add(@RequestBody ServiceRelativesconfirmation serviceRelativesconfirmation) { |
| | | log.info("新增捐献亲属确认:{}", serviceRelativesconfirmation); |
| | | boolean save = serviceRelativesconfirmationService.save(serviceRelativesconfirmation); |
| | | return AjaxResult.success(serviceRelativesconfirmation); |
| | | } |
| | |
| | | @PostMapping("/edit") |
| | | @RepeatSubmit |
| | | public AjaxResult edit(@RequestBody ServiceRelativesconfirmation serviceRelativesconfirmation) { |
| | | log.info("修改亲属确认:{}", serviceRelativesconfirmation); |
| | | if (serviceRelativesconfirmation.getInfoid() == null || serviceRelativesconfirmation.getId() == null) { |
| | | throw new BaseException("请联系工程师检查ID是否为空"); |
| | | } |
| | |
| | | } else if (relativeConfirmation.getSex().equals("2")) { |
| | | dataMap.put("XB", "女"); |
| | | } |
| | | |
| | | dataMap.put("CSRQ", relativeConfirmation.getBirthday() == null ? "" : relativeConfirmation.getBirthday().substring(0, 10)); |
| | | SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
| | | dataMap.put("CSRQ", relativeConfirmation.getBirthday() == null ? "" : simpleDateFormat.format(relativeConfirmation.getBirthday()).substring(0, 10)); |
| | | dataMap.put("MZ", NationalityEnum.getDescByCode(relativeConfirmation.getNation()) == null ? "" : NationalityEnum.getDescByCode(relativeConfirmation.getNation())); |
| | | dataMap.put("XL", Education.getDescByCode(relativeConfirmation.getEducation()) == null ? "" : Education.getDescByCode(relativeConfirmation.getEducation())); |
| | | String occupation = ""; |