コード例 #1
0
ファイル: SalesStageAction.java プロジェクト: dayfei/grasscrm
 /**
  * Deletes the selected entity.
  *
  * @return the SUCCESS result
  */
 public String delete() throws ServiceException {
   baseService.batchDeleteEntity(SalesStage.class, this.getSeleteIDs());
   return SUCCESS;
 }
コード例 #2
0
 /**
  * Deletes the selected entities.
  *
  * @return the SUCCESS result
  */
 public String delete() throws Exception {
   UserUtil.permissionCheck("delete_targetList");
   baseService.batchDeleteEntity(TargetList.class, this.getSeleteIDs());
   return SUCCESS;
 }