6 changed files with 115 additions and 17 deletions
@ -0,0 +1,84 @@ |
|||||
|
package com.elink.esua.epdc.modules.item.controller; |
||||
|
|
||||
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
||||
|
import com.elink.esua.epdc.modules.item.service.PushToCityGridService; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.PathVariable; |
||||
|
import org.springframework.web.bind.annotation.PostMapping; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
import javax.management.relation.RelationSupport; |
||||
|
|
||||
|
@RestController |
||||
|
@RequestMapping("PushToCity") |
||||
|
public class PushToCityGridController { |
||||
|
|
||||
|
@Autowired |
||||
|
private PushToCityGridService pushToCityGridService; |
||||
|
|
||||
|
/** |
||||
|
* 诉求结案 |
||||
|
* |
||||
|
* @param |
||||
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
||||
|
* @author LZN |
||||
|
* @date 2022/9/20 10:47 |
||||
|
*/ |
||||
|
@PostMapping("caseClosed") |
||||
|
public Result Closed(){ |
||||
|
return pushToCityGridService.caseClosedSentoCity(); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 派遣审核 |
||||
|
* |
||||
|
* @param |
||||
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
||||
|
* @author LZN |
||||
|
* @date 2022/9/20 10:48 |
||||
|
*/ |
||||
|
@PostMapping("DispatchAudit") |
||||
|
public Result DispatchAudit(){ |
||||
|
return pushToCityGridService.DispatchAudit(); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 诉求上报 |
||||
|
* |
||||
|
* @param |
||||
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
||||
|
* @author LZN |
||||
|
* @date 2022/9/20 10:48 |
||||
|
*/ |
||||
|
@PostMapping("AppealReporting") |
||||
|
public Result AppealReporting(){ |
||||
|
return pushToCityGridService.AppealReporting(); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 上报驳回 |
||||
|
* |
||||
|
* @param |
||||
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
||||
|
* @author LZN |
||||
|
* @date 2022/9/20 10:52 |
||||
|
*/ |
||||
|
@PostMapping("ReportRejection") |
||||
|
public Result ReportRejection(){ |
||||
|
return pushToCityGridService.ReportRejection(); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 诉求处理 |
||||
|
* |
||||
|
* @param |
||||
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
||||
|
* @author LZN |
||||
|
* @date 2022/9/20 10:53 |
||||
|
*/ |
||||
|
@PostMapping("AppealHandling") |
||||
|
public Result AppealHandling(){ |
||||
|
return pushToCityGridService.AppealHandling(); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue