package com.artfess.cqlt.controller; import com.artfess.base.annotation.ApiGroup; import com.artfess.base.constants.ApiGroupConsts; import com.artfess.base.enums.LoanDataTypeEnum; import com.artfess.base.model.CommonResult; import com.artfess.base.query.PageList; import com.artfess.base.query.QueryFilter; import com.artfess.cqlt.model.QfFinanceLoanM; import com.artfess.i18n.util.I18nUtil; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import lombok.extern.slf4j.Slf4j; import org.apache.poi.ss.formula.functions.T; import org.springframework.context.i18n.LocaleContextHolder; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import com.artfess.base.controller.BaseController; import com.artfess.cqlt.model.QfFinanceLoanD; import com.artfess.cqlt.manager.QfFinanceLoanDManager; import java.util.Arrays; /** * 资金--贷款填报数据详情 前端控制器 * * @company 阿特菲斯信息技术有限公司 * @author min.wu * @since 2023-03-02 */ @Slf4j @RestController @Api(tags = "资金--贷款填报详情") @RequestMapping("/qf/finance/loan/detail/") @ApiGroup(group = {ApiGroupConsts.GROUP_BIZ}) public class QfFinanceLoanDController extends BaseController { @PutMapping("/batchUpdate") @ApiOperation("批量更新实体") public CommonResult batchUpdate(@ApiParam(name = "model", value = "实体信息") @RequestBody QfFinanceLoanM t) { boolean result = baseService.batchUpdate(t); if (!result) { return new CommonResult(false, I18nUtil.getMessage("option.fail", LocaleContextHolder.getLocale()), null); } return new CommonResult(true, I18nUtil.getMessage("option.success", LocaleContextHolder.getLocale()), null); } @Override @DeleteMapping("/{id}") @ApiOperation("根据id删除") public CommonResult deleteById(@ApiParam(name = "id", value = "实体id") @PathVariable String id) { boolean result = baseService.removeById(id); if (!result) { return new CommonResult(false, I18nUtil.getMessage("delete.fail", LocaleContextHolder.getLocale()), null); } return new CommonResult(true, I18nUtil.getMessage("option.success", LocaleContextHolder.getLocale()), null); } @Override @DeleteMapping("/") @ApiOperation("根据id集合批量删除") public CommonResult deleteByIds(@ApiParam(name = "ids", value = "实体集合") @RequestParam String... ids) { boolean result = baseService.removeByIds(Arrays.asList(ids)); if (!result) { return new CommonResult(false, I18nUtil.getMessage("delete.fail", LocaleContextHolder.getLocale()), null); } return new CommonResult(true, I18nUtil.getMessage("option.success", LocaleContextHolder.getLocale()), null); } @Override @PostMapping(value="/query", produces={"application/json; charset=utf-8" }) @ApiOperation("分页查询结果") public PageList query(@ApiParam(name="queryFilter", value="分页查询信息") @RequestBody QueryFilter queryFilter) { PageList page = baseService.query(queryFilter); page.getRows().forEach(loan -> { loan.setType(LoanDataTypeEnum.getDesc(loan.getType())); }); return baseService.query(queryFilter); } }