|
@@ -36,6 +36,7 @@ public class BomanMessageReceiveServiceImpl implements IBomanMessageReceiveServi
|
|
private static final String NOT_READ = "notRead";
|
|
private static final String NOT_READ = "notRead";
|
|
private static final String READ = "read";
|
|
private static final String READ = "read";
|
|
private static final String VISIBLE = "visible";
|
|
private static final String VISIBLE = "visible";
|
|
|
|
+ private static final String IS_DEL = "is_del";
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
private IBaseSelectService selectService;
|
|
private IBaseSelectService selectService;
|
|
@@ -118,7 +119,9 @@ public class BomanMessageReceiveServiceImpl implements IBomanMessageReceiveServi
|
|
dto.setTableName(BOMAN_MESSAGE_RECEIVE);
|
|
dto.setTableName(BOMAN_MESSAGE_RECEIVE);
|
|
|
|
|
|
JSONObject commitData = new JSONObject();
|
|
JSONObject commitData = new JSONObject();
|
|
- commitData.put(STATUS, DELETED);
|
|
|
|
|
|
+ //设置不可见
|
|
|
|
+ commitData.put(VISIBLE, 'N');
|
|
|
|
+ commitData.put(IS_DEL, 'Y');
|
|
|
|
|
|
JSONObject condition = new JSONObject();
|
|
JSONObject condition = new JSONObject();
|
|
condition.put(MESSAGE_ID, messageId);
|
|
condition.put(MESSAGE_ID, messageId);
|