|
|
@@ -8,6 +8,7 @@ import com.inspur.customer.object.tenant.ExceptionInformStrategyCmd;
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
+ * message send record service
|
|
|
* @author linwenhua
|
|
|
* @date 2022-06-29 16:31
|
|
|
**/
|
|
|
@@ -18,9 +19,15 @@ public interface InformMessageRecordService {
|
|
|
* @param users users
|
|
|
* @param informStrategyCmd inform strategy
|
|
|
* @param informMessageRecordDto message record
|
|
|
+ * @throws JsonProcessingException json parse exception
|
|
|
* @return content id
|
|
|
*/
|
|
|
Long saveRecord(List<KeycloakUserCO> users, ExceptionInformStrategyCmd informStrategyCmd, InformMessageRecordDto informMessageRecordDto) throws JsonProcessingException;
|
|
|
|
|
|
- void updateRecord(Long contentId, Integer infromStatus);
|
|
|
+ /**
|
|
|
+ * update record
|
|
|
+ * @param contentId contentId
|
|
|
+ * @param informStatus status
|
|
|
+ */
|
|
|
+ void updateRecord(Long contentId, Integer informStatus);
|
|
|
}
|