|
@@ -30,6 +30,7 @@ import com.boman.web.core.domain.RowResult;
|
|
|
import com.boman.web.core.domain.TableContext;
|
|
|
import com.boman.web.core.service.common.ICommonService;
|
|
|
import com.boman.web.core.service.delete.IBaseDeleteService;
|
|
|
+import com.boman.web.core.service.message.MessageService;
|
|
|
import com.boman.web.core.service.save.IBaseSaveService;
|
|
|
import com.boman.web.core.service.select.IBaseSelectService;
|
|
|
import com.boman.web.core.service.submit.IBaseSubmitService;
|
|
@@ -101,6 +102,8 @@ public class TableServiceCmdService {
|
|
|
private RemoteJflowProcessService remoteJflowProcessService;
|
|
|
@Resource
|
|
|
private RemoteWechatService remoteWechatService;
|
|
|
+ @Resource
|
|
|
+ private MessageService messageService;
|
|
|
|
|
|
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(TableServiceCmdService.class);
|
|
@@ -370,7 +373,9 @@ public class TableServiceCmdService {
|
|
|
processDto.setHardShut(Boolean.TRUE);
|
|
|
remoteJflowProcessService.shut(processDto);
|
|
|
}
|
|
|
-
|
|
|
+ if(tableName.equals("boman_message")) {
|
|
|
+ messageService.deleteReceive(id);
|
|
|
+ }
|
|
|
result.add(rowResult);
|
|
|
}
|
|
|
|