| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.java110.web.components;
- import com.java110.core.context.IPageData;
- import com.java110.web.smo.IPrivilegeServiceSMO;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.http.HttpStatus;
- import org.springframework.http.ResponseEntity;
- import org.springframework.stereotype.Component;
- @Component("deletePrivilegeGroup")
- public class DeletePrivilegeGroupComponent {
- @Autowired
- private IPrivilegeServiceSMO privilegeServiceSMOImpl;
- /**
- * 删除权限组
- * @param pd
- * @return
- */
- public ResponseEntity<String> delete(IPageData pd){
- ResponseEntity<String> responseEntity = null;
- try{
- responseEntity = privilegeServiceSMOImpl.deletePrivilegeGroup(pd);
- }catch (Exception e){
- responseEntity = new ResponseEntity<String>(e.getMessage(), HttpStatus.INTERNAL_SERVER_ERROR);
- }finally {
- return responseEntity;
- }
- }
- public IPrivilegeServiceSMO getPrivilegeServiceSMOImpl() {
- return privilegeServiceSMOImpl;
- }
- public void setPrivilegeServiceSMOImpl(IPrivilegeServiceSMO privilegeServiceSMOImpl) {
- this.privilegeServiceSMOImpl = privilegeServiceSMOImpl;
- }
- }
|