|
@ -1,8 +1,10 @@
|
|
|
package com.yihu.iot.controller.platform;
|
|
|
|
|
|
import com.yihu.iot.service.platform.IotInterfaceAuditService;
|
|
|
import com.yihu.jw.entity.iot.company.IotCompanyAppDO;
|
|
|
import com.yihu.jw.entity.iot.platform.IotInterfaceAuditDO;
|
|
|
import com.yihu.jw.entity.iot.platform.IotShareInterfaceDO;
|
|
|
import com.yihu.jw.restmodel.iot.company.IotCompanyAppVO;
|
|
|
import com.yihu.jw.restmodel.iot.platform.IotInterfaceAuditVO;
|
|
|
import com.yihu.jw.restmodel.web.MixEnvelop;
|
|
|
import com.yihu.jw.restmodel.web.endpoint.EnvelopRestEndpoint;
|
|
@ -46,6 +48,7 @@ public class IotInterfaceAuditController extends EnvelopRestEndpoint {
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping(value = IotRequestMapping.InterfaceAudit.findInterfaceApplyFor)
|
|
|
@ApiOperation(value = "查看应用接口申请信息",notes = "查看应用接口申请信息")
|
|
|
public MixEnvelop<IotInterfaceAuditVO,IotInterfaceAuditVO> findInterfaceApplyFor(@ApiParam(name = "id",value = "ID") @RequestParam(value = "id",required = true)String id){
|
|
@ -87,7 +90,7 @@ public class IotInterfaceAuditController extends EnvelopRestEndpoint {
|
|
|
|
|
|
@GetMapping(value = IotRequestMapping.InterfaceAudit.conditionQueryPage)
|
|
|
@ApiOperation(value = "条件分页查询应用接口申请信息",notes = "条件分页查询应用接口申请信息")
|
|
|
public MixEnvelop<IotInterfaceAuditDO,IotInterfaceAuditDO> conditionQueryPage(@ApiParam(name = "name", value = "厂商名称或联系人名称", defaultValue = "")
|
|
|
public MixEnvelop<IotInterfaceAuditDO,IotInterfaceAuditDO> conditionQueryPage(@ApiParam(name = "name", value = "平台名称", defaultValue = "")
|
|
|
@RequestParam(value = "name", required = false) String companyName,
|
|
|
@ApiParam(name = "page", value = "第几页", defaultValue = "")
|
|
|
@RequestParam(value = "page", required = false) Integer page,
|
|
@ -142,6 +145,20 @@ public class IotInterfaceAuditController extends EnvelopRestEndpoint {
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping(value = IotRequestMapping.InterfaceAudit.QueryCompanyApp)
|
|
|
@ApiOperation(value = "分页查询企业下应用接口申请",notes = "分页查询企业下应用接口申请")
|
|
|
public MixEnvelop<IotInterfaceAuditDO,IotInterfaceAuditDO> QueryCompanyApp(){
|
|
|
|
|
|
try {
|
|
|
return iotInterfaceAuditService.QueryCompanyApp();
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
return MixEnvelop.getError(e.getMessage());
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|