| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- package com.ydtech.modules.admin.controller;
- import com.ydtech.core.page.HttpResult;
- import com.ydtech.modules.admin.model.dto.AgreeReportQueryDto;
- import com.ydtech.modules.admin.model.report.user.agree.AgreeReportDto;
- import com.ydtech.modules.admin.service.AgreeReportService;
- import com.ydtech.modules.order.entity.BasePageResult;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- import java.util.List;
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/28 8:36
- * @Description: 控制台战略合作单位统计
- */
- @Api(tags = "控制台战略合作单位统计")
- @RequestMapping("/agreeReport")
- @RestController
- public class AgreeReportConroller {
- @Autowired
- private AgreeReportService agreeReportService;
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/28 8:36
- * @Description: 控制台战略合作单位统计
- */
- @PostMapping("queryPage")
- @ApiOperation(value = "控制台战略合作单位统计")
- public HttpResult<BasePageResult<AgreeReportDto>> queryPage(@RequestBody AgreeReportQueryDto agreeReportQueryDto) {
- try{
- BasePageResult<AgreeReportDto> result = agreeReportService.queryPage(agreeReportQueryDto);
- return HttpResult.ok("查询数据成功", result);
- }catch (Exception e){
- return HttpResult.error("查询错误"+e.getMessage());
- }
- }
- /**
- * @version
- * @author: whp
- * @Date: 2024/7/23
- * @Description: 查询保险公司列表
- */
- @PostMapping("getInsuranceCompany")
- @ApiOperation(value = "获取保险公司列表")
- public HttpResult<List<AgreeReportDto>> getInsuranceCompany() {
- try {
- List<AgreeReportDto> result = agreeReportService.getInsuranceCompany();
- return HttpResult.ok("查询数据成功", result);
- } catch (Exception e) {
- return HttpResult.error("查询错误" + e.getMessage());
- }
- }
- }
|