| | |
| | | import com.vci.ubcs.code.wrapper.CodeRuleWrapper; |
| | | import com.vci.ubcs.code.wrapper.DockingSystemConfigWrapper; |
| | | import com.vci.ubcs.code.wrapper.DockingSystemWrapper; |
| | | import com.vci.ubcs.starter.exception.VciBaseException; |
| | | import com.vci.ubcs.starter.web.pagemodel.BaseQueryObject; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | |
| | | /** |
| | | * 删除系统集成的系统信息 |
| | | * @param dockingSystemDTO 系统集成的系统信息数据传输对象,oid和ts需要传输 |
| | | * @param oids 系统集成的系统信息数据传输对象,oid和ts需要传输 |
| | | * @return 删除结果反馈::success:成功,fail:失败 |
| | | */ |
| | | @DeleteMapping( "/deleteData") |
| | | public R delSystemData( DockingSystemDTO dockingSystemDTO) { |
| | | return R.status(dockingSystemService.delSystemData(dockingSystemDTO)); |
| | | @DeleteMapping( "/deleteDataById") |
| | | public R deleteDataById( String oids) { |
| | | try { |
| | | return R.status(dockingSystemService.deleteDataById(oids)); |
| | | }catch (VciBaseException e){ |
| | | R.fail(e.getMessage()); |
| | | } |
| | | return R.success("操作成功"); |
| | | } |
| | | /** |
| | | * 系统集成基础信息列表 |