Browse Source

接口路径修改

feature/dangjian
wanggongfeng 6 years ago
parent
commit
980fcf8b88
  1. 4
      esua-epdc/epdc-module/epdc-api/epdc-api-server/src/main/java/com/elink/esua/epdc/controller/ApiActUserRelationController.java

4
esua-epdc/epdc-module/epdc-api/epdc-api-server/src/main/java/com/elink/esua/epdc/controller/ApiActUserRelationController.java

@ -137,7 +137,7 @@ public class ApiActUserRelationController {
* @author wanggongfeng
* @date 2019/12/13 14:41
*/
@GetMapping("clockList/{actId}")
@GetMapping("clockList")
public Result<EpdcAppClockListDTO> getClockList(@LoginUser TokenDto tokenDto, @PathVariable("actId") String actId) {
Result<AppClockListDTO> result = actUserRelationService.getClockList(actId);
EpdcAppClockListDTO epdcAppClockListDTO = ConvertUtils.sourceToTarget(result.getData(), EpdcAppClockListDTO.class);
@ -155,7 +155,7 @@ public class ApiActUserRelationController {
* @author wanggongfeng
* @date 2019/12/13 14:41
*/
@GetMapping("clockAddressDetail/{actId}")
@GetMapping("clockAddressDetail")
public Result<AppActInfoDTO> clockAddressDetail(@PathVariable("actId") String actId) {
return actUserRelationService.clockAddressDetail(actId);

Loading…
Cancel
Save