|
@@ -22,7 +22,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping("/base_country_serve")
|
|
|
-public class BaseCountryServeController extends BaseController implements BaseCountryServeRemoteController {
|
|
|
+public class BaseCountryServeController extends BaseController<BaseCountryServe> implements BaseCountryServeRemoteController {
|
|
|
@Autowired
|
|
|
private BaseCountryServeService baseCountryServeService;
|
|
|
|
|
@@ -31,9 +31,4 @@ public class BaseCountryServeController extends BaseController implements Base
|
|
|
return baseCountryServeService.getCountryServePage(dto);
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
- @PostMapping("/updateById")
|
|
|
- public BaseResponse<BaseCountryServeVo> updateTargetById(@RequestBody BaseCountryServeDTO entity) {
|
|
|
- return super.updateTargetById(entity);
|
|
|
- }
|
|
|
}
|