统计接口修改为路径参数

bbt
zef 4 months ago
parent e226a38e94
commit ca8d589a50

@ -244,23 +244,18 @@ public class TbCompanyVerificationController extends BaseController {
return toAjax(tbCompanyVerificationService.deleteTbCompanyVerificationByIds(ids)); return toAjax(tbCompanyVerificationService.deleteTbCompanyVerificationByIds(ids));
} }
@GetMapping("/readCount") @GetMapping("/readCount/{companyId}")
@ApiOperation("获取已读未读数量") @ApiOperation("获取已读未读数量")
@ApiOperationSupport(author = "张二富", order = 25) @ApiOperationSupport(author = "张二富", order = 25)
@ApiImplicitParam(name = "companyId", value = "企业id", required = true) @ApiImplicitParam(name = "companyId", value = "企业id", required = true)
public R readCount(@RequestBody TbCompanyVerification tbCompanyVerification){ public R readCount(@PathVariable("companyId") Long companyId){
if (tbCompanyVerification!=null&&tbCompanyVerification.getCompanyId()!=null&&StringUtils.isBlank(tbCompanyVerification.getCompanyId()+"")){
R rspData = new R<>();
rspData.setCode(HttpStatus.SUCCESS);
rspData.setMsg("查询成功");
return rspData;
}
HashMap<String, Object> map = new HashMap<>(); HashMap<String, Object> map = new HashMap<>();
QueryWrapper<TbCompanyVerification> total = new QueryWrapper<>(); QueryWrapper<TbCompanyVerification> total = new QueryWrapper<>();
total.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.isDel),"1"); total.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.isDel),"1");
total.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.auditState),"0"); total.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.auditState),"0");
total.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.companyId),tbCompanyVerification.getCompanyId()); total.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.companyId),companyId);
List<TbCompanyVerification> totalList = tbCompanyVerificationService.list(total); List<TbCompanyVerification> totalList = tbCompanyVerificationService.list(total);
@ -268,7 +263,7 @@ public class TbCompanyVerificationController extends BaseController {
readTrue.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.isDel),"1"); readTrue.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.isDel),"1");
readTrue.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.auditState),"0"); readTrue.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.auditState),"0");
readTrue.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.readState),"0"); readTrue.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.readState),"0");
readTrue.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.companyId),tbCompanyVerification.getCompanyId()); readTrue.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.companyId),companyId);
List<TbCompanyVerification> readTrueList = tbCompanyVerificationService.list(readTrue); List<TbCompanyVerification> readTrueList = tbCompanyVerificationService.list(readTrue);
@ -277,7 +272,7 @@ public class TbCompanyVerificationController extends BaseController {
readFalse.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.isDel),"1"); readFalse.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.isDel),"1");
readFalse.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.auditState),"0"); readFalse.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.auditState),"0");
readFalse.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.readState),"1"); readFalse.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.readState),"1");
readFalse.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.companyId),tbCompanyVerification.getCompanyId()); readFalse.eq(StringUtils.camelToUnderline(TbCompanyVerification.Fields.companyId),companyId);
List<TbCompanyVerification> readFalseList =tbCompanyVerificationService.list(readFalse); List<TbCompanyVerification> readFalseList =tbCompanyVerificationService.list(readFalse);
map.put("totalCount",totalList.size()); map.put("totalCount",totalList.size());
map.put("readTrueCount",readTrueList.size()); map.put("readTrueCount",readTrueList.size());

Loading…
Cancel
Save