Gb1400Service.java 615 Bytes
package com.viontech.service;

import com.viontech.utils.JsonMessage;
import com.viontech.vo.gb1400.SubscribeNotificationsObj;

public interface Gb1400Service {
    JsonMessage registerToMySystem(String params);
    void register(String userIdentify);
    JsonMessage subscribes(String params);
    JsonMessage unSubscribes(String subscribeId, String params);
    JsonMessage subscribeNotifications(SubscribeNotificationsObj subscribeNotificationsObj);
    JsonMessage selectNotifications(SubscribeNotificationsObj.SubscribeNotificationObject notificationObject);
    JsonMessage deleteNotifications(String ids);
}