Commit 8abd0b16 authored by yaobaizheng's avatar yaobaizheng

默认图修改

parent 1d59db45
......@@ -47,7 +47,7 @@ public class DevelopmentInfoController extends BaseController {
@ApiImplicitParam(name = "orderByColumn", value = "排序字段(可为空,传类属性)", type = "String"),
@ApiImplicitParam(name = "isAsc", value = "排序字段(可为空,请传asc或者desc)", type = "String")
})
// @EncryptBusiness
@EncryptBusiness
public TableDataInfo list(DevelopmentInfoParam developmentInfoParam) {
boolean login = isLogin();
String status = DevelopmentStatusEnum.STATUS_YRZ.getCode()+","+DevelopmentStatusEnum.STATUS_DRZ.getCode();
......@@ -73,7 +73,7 @@ public class DevelopmentInfoController extends BaseController {
@ResponseBody
@ApiOperation(value = "某个开发区信息",notes = "rest风格传参,将参数拼接在url上")
@ApiImplicitParam(name = "id", value = "开发区id", type = "Long")
// @EncryptBusiness
@EncryptBusiness
public DevelopmentInfoAllVO get(@PathVariable Long id) {
return developmentInfoSerivce.getDevelopmentInfo(id,getUserInfo().getUserId(),getUserInfo().getIsMembership());
}
......
......@@ -57,7 +57,7 @@ public class ParkInfoController extends BaseController {
@ApiImplicitParam(name = "orderByColumn", value = "排序字段(可为空,传类属性)", type = "String"),
@ApiImplicitParam(name = "isAsc", value = "排序字段(可为空,请传asc或者desc)", type = "String")
})
// @EncryptBusiness
@EncryptBusiness
public TableDataInfo list(ParkInfoParam parkInfoParam) {
boolean login = isLogin();
String status = ParkInfoEnum.STATUS_YRZ.getCode()+","+ParkInfoEnum.STATUS_DRZ.getCode();
......@@ -87,7 +87,7 @@ public class ParkInfoController extends BaseController {
@ResponseBody
@ApiOperation(value = "获取某个园区信息", notes = "rest风格传参,将参数拼接在url上")
@ApiImplicitParam(name = "id", value = "园区id", type = "Long")
// @EncryptBusiness
@EncryptBusiness
public ParkInfoAllVO get(@PathVariable Long id) {
return parkInfoService.getParkInfo(id, getUserInfo().getUserId(), getUserInfo().getIsMembership());
}
......
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