|
@ -7,6 +7,8 @@ import com.yihu.iot.dao.platform.IotShareInterfaceDao;
|
|
|
import com.yihu.jw.entity.iot.platform.IotCompanyAppInterfaceDO;
|
|
|
import com.yihu.jw.entity.iot.platform.IotShareInterfaceDO;
|
|
|
import com.yihu.jw.restmodel.iot.platform.IotAppInterfacesVO;
|
|
|
import com.yihu.jw.restmodel.web.MixEnvelop;
|
|
|
import com.yihu.jw.rm.iot.IotRequestMapping;
|
|
|
import com.yihu.mysql.query.BaseJpaService;
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@ -75,4 +77,20 @@ public class IotCompanyAppInterfaceService extends BaseJpaService<IotCompanyAppI
|
|
|
|
|
|
return list;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 删除应用接口
|
|
|
* @param id
|
|
|
*/
|
|
|
public MixEnvelop<IotCompanyAppInterfaceDO, IotCompanyAppInterfaceDO> delAppInterface(String id) {
|
|
|
|
|
|
IotCompanyAppInterfaceDO appInterfaceDO = iotCompanyAppInterfaceDao.findOne(id);
|
|
|
if (appInterfaceDO.getDel().equalsIgnoreCase("1")){
|
|
|
return MixEnvelop.getError("该接口已删除",-1);
|
|
|
}
|
|
|
appInterfaceDO.setDel("1");
|
|
|
iotCompanyAppInterfaceDao.save(appInterfaceDO);
|
|
|
|
|
|
return MixEnvelop.getSuccess(IotRequestMapping.Platform.message_success_delete);
|
|
|
}
|
|
|
}
|