处理mapper位置问题
This commit is contained in:
@@ -11,12 +11,11 @@ import org.springframework.context.annotation.ComponentScan;
|
||||
@SpringBootApplication(exclude = {
|
||||
org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration.class,
|
||||
org.activiti.spring.boot.SecurityAutoConfiguration.class })
|
||||
@ServletComponentScan
|
||||
@ComponentScan("com.adc")
|
||||
public class AdcDaApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
ApplicationContext applicationContext = SpringApplication.run(AdcDaApplication.class, args);
|
||||
SpringApplication.run(AdcDaApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -29,6 +29,12 @@
|
||||
<artifactId>lombok</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.adc</groupId>
|
||||
<artifactId>adc-da-login</artifactId>
|
||||
<version>2.5.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.adc</groupId>
|
||||
<artifactId>adc-da-sys</artifactId>
|
||||
|
||||
+8
-7
@@ -25,31 +25,32 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.*;
|
||||
|
||||
import static com.adc.da.wkflow.util.date.DateTools.disposeApprovalTime;
|
||||
|
||||
@Api(description = "流程明细管理")
|
||||
@Api(tags = "流程明细管理")
|
||||
@RestController
|
||||
@RequestMapping("/task")
|
||||
public class TaskController {
|
||||
|
||||
@Autowired
|
||||
@Resource
|
||||
private HistoryService historyService;
|
||||
|
||||
@Autowired
|
||||
@Resource
|
||||
IUserEoService userEoService;
|
||||
|
||||
@Autowired
|
||||
@Resource
|
||||
private IBusProcessNameService iBusProcessNameService;
|
||||
|
||||
@Autowired
|
||||
@Resource
|
||||
private IBusProcessNewService iBusProcessNewService;
|
||||
|
||||
@Autowired
|
||||
@Resource
|
||||
private IBusProcessApproveService iBusProcessEntrustService;
|
||||
|
||||
@Autowired
|
||||
@Resource
|
||||
private IBusProcessApproveService iBusProcessApproveService;
|
||||
|
||||
@ApiOperation(value = "流程实例明细列表")
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ import javax.annotation.Resource;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
@Api(description = "临时测试接口")
|
||||
@Api(tags = "临时测试接口")
|
||||
@RestController
|
||||
@RequestMapping("/api/temp")
|
||||
public class TempTestController {
|
||||
|
||||
+1
-1
@@ -51,7 +51,7 @@ import java.util.stream.Collectors;
|
||||
|
||||
import static com.adc.da.wkflow.util.date.DateTools.*;
|
||||
|
||||
@Api(description = "待办任务管理")
|
||||
@Api(tags = "待办任务管理")
|
||||
@RestController
|
||||
@Slf4j
|
||||
public class TodoTaskController {
|
||||
|
||||
Reference in New Issue
Block a user