package com.ycl.controller.zfreport; import com.ycl.controller.BaseController; import io.swagger.annotations.Api; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *
* 违规事项处置管理:包含违法(违建)情况上报、立案、派遣、处置、核查、结案 前端控制器 *
* * @author lyq * @since 2022-09-14 */ @RestController @RequestMapping("/enforcelaw-report") @Api(tags = "执法管理:违规事项处置管理") public class EnforcelawReportController extends BaseController { }