|
|
|
@ -454,5 +454,47 @@ public class ItemController { |
|
|
|
return new Result<List<ItemListByAddressResultDTO>>().ok(itemService.getItemListByAddress(params)); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 接受市平台诉求督办 |
|
|
|
* |
|
|
|
* @param formDto |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
|
|
|
* @author zhy |
|
|
|
* @date 2022/10/21 16:13 |
|
|
|
*/ |
|
|
|
@PostMapping("gov/case/supervise") |
|
|
|
public Result supervise(@RequestBody AppealSuperviseResultDTO formDto) { |
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
return itemService.supervise(formDto); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 接受市平台吹哨驳回 |
|
|
|
* |
|
|
|
* @param formDto |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
|
|
|
* @author zhy |
|
|
|
* @date 2022/10/21 16:13 |
|
|
|
*/ |
|
|
|
@PostMapping("gov/case/whistle/reportreject") |
|
|
|
public Result reportReject(@RequestBody AppealWhistleReportRejectResultDTO formDto) { |
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
return itemService.reportReject(formDto); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 接受市平台吹哨反馈 |
|
|
|
* |
|
|
|
* @param formDto |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
|
|
|
* @author zhy |
|
|
|
* @date 2022/10/21 16:13 |
|
|
|
*/ |
|
|
|
@PostMapping("gov/case/whistle/feedback") |
|
|
|
public Result feedback(@RequestBody AppealWhistleFeedbackResultDTO formDto) { |
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
return itemService.feedback(formDto); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|