新增客户服务功能
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
yuyongle 2025-07-23 09:28:20 +08:00
parent 359e73fa97
commit 350b8f511c
4 changed files with 0 additions and 9 deletions

View File

@ -9,7 +9,6 @@ import cn.dev33.satoken.annotation.SaCheckPermission;
import org.dromara.property.domain.bo.CustomerFeedbacksBo; import org.dromara.property.domain.bo.CustomerFeedbacksBo;
import org.dromara.property.domain.vo.CustomerFeedbacksVo; import org.dromara.property.domain.vo.CustomerFeedbacksVo;
import org.dromara.property.service.ICustomerFeedbacksService; import org.dromara.property.service.ICustomerFeedbacksService;
import org.jfree.data.category.DefaultCategoryDataset;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
import org.dromara.common.idempotent.annotation.RepeatSubmit; import org.dromara.common.idempotent.annotation.RepeatSubmit;
@ -44,7 +43,6 @@ public class CustomerFeedbacksController extends BaseController {
@SaCheckPermission("system:feedbacks:list") @SaCheckPermission("system:feedbacks:list")
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo<CustomerFeedbacksVo> list(CustomerFeedbacksBo bo, PageQuery pageQuery) { public TableDataInfo<CustomerFeedbacksVo> list(CustomerFeedbacksBo bo, PageQuery pageQuery) {
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
return customerFeedbacksService.queryPageList(bo, pageQuery); return customerFeedbacksService.queryPageList(bo, pageQuery);
} }

View File

@ -5,7 +5,6 @@ import org.dromara.common.core.domain.R;
import org.dromara.common.web.core.BaseController; import org.dromara.common.web.core.BaseController;
import org.dromara.property.domain.vo.ServeceCustomerCountVo; import org.dromara.property.domain.vo.ServeceCustomerCountVo;
import org.dromara.property.service.IServiceWorkOrdersService; import org.dromara.property.service.IServiceWorkOrdersService;
import org.jfree.data.category.DefaultCategoryDataset;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;

View File

@ -6,7 +6,6 @@ import org.dromara.property.domain.bo.ServiceWorkOrdersBo;
import org.dromara.property.domain.vo.ServeceCustomerCountVo; import org.dromara.property.domain.vo.ServeceCustomerCountVo;
import org.dromara.property.domain.vo.ServiceWorkOrdersInfoVo; import org.dromara.property.domain.vo.ServiceWorkOrdersInfoVo;
import org.dromara.property.domain.vo.ServiceWorkOrdersVo; import org.dromara.property.domain.vo.ServiceWorkOrdersVo;
import org.jfree.data.category.DefaultCategoryDataset;
import java.util.Collection; import java.util.Collection;
import java.util.List; import java.util.List;

View File

@ -29,11 +29,6 @@ import org.dromara.property.mapper.ServiceWorkOrdersRecordMapper;
import org.dromara.property.mapper.ServiceWorkOrdersTypeMapper; import org.dromara.property.mapper.ServiceWorkOrdersTypeMapper;
import org.dromara.property.service.IServiceWorkOrdersService; import org.dromara.property.service.IServiceWorkOrdersService;
import org.dromara.system.api.model.LoginUser; import org.dromara.system.api.model.LoginUser;
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.data.category.DefaultCategoryDataset;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;