Browse Source

1.解决冲突

dev_shibei_match
wxz 5 years ago
parent
commit
59a9694d5f
  1. 7
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/controller/DimController.java

7
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/controller/DimController.java

@ -1,15 +1,20 @@
package com.epmet.controller; package com.epmet.controller;
import com.epmet.commons.tools.utils.Result; import com.epmet.commons.tools.utils.Result;
import com.epmet.dto.AgencySubTreeDto;
import com.epmet.service.StatsDimService; import com.epmet.service.StatsDimService;
import com.epmet.service.stats.DimAgencyService;
import com.epmet.service.stats.DimDateService; import com.epmet.service.stats.DimDateService;
import com.epmet.service.stats.DimMonthService; import com.epmet.service.stats.DimMonthService;
import oracle.jdbc.proxy.annotation.Post; import com.epmet.service.stats.DimQuarterService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController @RestController
@RequestMapping("dim") @RequestMapping("dim")
public class DimController { public class DimController {

Loading…
Cancel
Save