Commit e1418f90 authored by jiaorz's avatar jiaorz

Merge branch 'base-modify' of http://113.105.137.151:22280/youjj/cloud-platform into base-modify

parents 4afac4ca 56c23ab7
......@@ -11,6 +11,9 @@ import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication(scanBasePackages = {
"com.xxfc.platform",
// "com.xxfc.platform.vehicle",
// "com.xxfc.platform.vehicle.biz",
// "com.xxfc.platform.vehicle.rest",
"com.github.wxiaoqi.security.common.handler",
"com.github.wxiaoqi.security.common.log"
})
......
......@@ -43,8 +43,8 @@ import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeUnit;
@Service
@Slf4j
@Service
public class VehicleWarningMsgBiz extends BaseBiz<VehicleWarningMsgMapper, VehicleWarningMsg> {
......
......@@ -21,6 +21,9 @@ public class VehicleWarningMsgController{
@Autowired
VehicleWarningMsgBiz vehicleWarningMsgBiz;
// @Autowired
// VehicleWarningMsgBiz vehicleWarningMsgBiz;
@RequestMapping(value ="{id}",method = RequestMethod.GET)
private RestResponse<VehicleWarningMsg> get(@PathVariable Integer id) throws Exception{
return RestResponse.codeAndData(RestResponse.SUC_CODE,vehicleWarningMsgBiz.selectById(id));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment