提交 5837f8bb 作者: xiaowang

改下名称

上级 e9a642ef
......@@ -28,9 +28,9 @@ public class ProductReportController {
@ApiOperation(value = "获取用户报表数据")
@ApiResponses({@ApiResponse(code = 200, message = "OK", response = ProductReportDTO.class)})
@GetMapping("/getUserReportData")
public ResultBody<ProductReportDTO> getUserReportData() {
return productReportService.getUserReportData();
@GetMapping("/getProductReportData")
public ResultBody<ProductReportDTO> getProductReportData() {
return productReportService.getProductReportData();
}
}
......@@ -9,6 +9,6 @@ import com.mmc.pms.model.data.dto.ProductReportDTO;
* 概要:
*/
public interface ProductReportService {
ResultBody<ProductReportDTO> getUserReportData();
ResultBody<ProductReportDTO> getProductReportData();
}
......@@ -31,7 +31,7 @@ public class ProductReportServiceImpl implements ProductReportService {
ImsAppApi imsAppApi;
@Override
public ResultBody<ProductReportDTO> getUserReportData() {
public ResultBody<ProductReportDTO> getProductReportData() {
// 获取入驻商家总数
ProductReportDTO joinStoreNumber = userAppApi.getJoinStoreNumber();
// 获取销售商品个数
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论